codeigniter Message: mkdir(): Invalid path Filename: drivers/Session_files_driver.phpphp
看起來像權限問題,在默認狀況下使用的是php.ini裏面的設置session
排除權限問題之後就正常了codeigniter
也能夠在congfig文件夾裏面的config.php文件的371行增長一句this
$config['sess_save_path'] = './你能夠讀寫的目錄路徑';spa
------------------------code
自動加載session報錯:
解決辦法:
$this->load->library('encryption');
$key = bin2hex($this->encryption->create_key(16));
echo $key;it
生成key,io
$config['encryption_key'] = '生成的key';file