【发布时间】:2017-02-17 05:08:42
【问题描述】:
我正在关注这个tutorial:
但是当我访问
http://localhost/index.php/user_authentication/
我收到此警告,无法运行代码:
Warning: include(C:\xampp\htdocs\application\views\errors\html\error_php.php): failed to open stream: No such file or directory in C:\xampp\htdocs\system\core\Exceptions.php on line 269
Warning: include(): Failed opening 'C:\xampp\htdocs\application\views\errors\html\error_php.php' for inclusion (include_path='C:\xampp\php\PEAR') in C:\xampp\htdocs\system\core\Exceptions.php on line 269
Warning: include(C:\xampp\htdocs\application\views\errors\html\error_php.php): failed to open stream: No such file or directory in C:\xampp\htdocs\system\core\Exceptions.php on line 269
Warning: include(): Failed opening 'C:\xampp\htdocs\application\views\errors\html\error_php.php' for inclusion (include_path='C:\xampp\php\PEAR') in C:\xampp\htdocs\system\core\Exceptions.php on line 269
当我删除 $this->load->library('session');
警告消失了,所以我很确定我在加载会话库时遇到了错误。
我已阅读该问题已通过更改 $config['sess_save_path'] = sys_get_temp_dir(); 得到解决
但我仍然收到警告。
我什至尝试将此代码添加到我的控制器中: mkdir("/thisisthedirectory", 0700);
然后更改了我的 $config['sess_save_path'] = "/thisisthedirectory";但它不起作用
也不 $config['sess_save_path'] = "C:\thisisthedirectory";
谁能告诉我如何解决这个问题?
【问题讨论】:
标签: codeigniter