環境:linux ,apache2 ,php5
問題:開啟phpmyadmin出現如下錯誤:
Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.
解決辦法如下:
vim /etc/php5/apache2/php.ini
尋找session.save_path ,將session.save_path=/var/lib/php5這一句的注釋符號去掉。
如還不能正常工作,將session.auto_start的值改為1(啟動),預設是0(禁用)
這個錯誤一般是由於session檔案的儲存路徑不可寫造成的,在linux下一般是路徑的許可權問題。在windows下面session.save_path一定要設定到一個可以讀寫的路徑,如 D:/tmp 等。
您可能感興趣的文章
- php提示PHP Warning: date(): It is not safe to rely on the......錯誤的解決辦法
- php提示Call to undefined function curl_init() 錯誤的解決辦法
- php提示Maximum execution time of 30 seconds exceeded...錯誤的解決辦法
- 該如何解決php運行出現Call to undefined function curl_init錯誤
- XDebug的進度條停在57%,提示waiting for XDebug session錯誤的解決辦法
- PHP報Fatal error Allowed memory size of...記憶體不足的錯誤應該如何解決
- Firefox 提示event is not defined錯誤的解決辦法
- Fatal error Class 'SoapClient' not found in ...錯誤處理辦法
http://www.bkjia.com/PHPjc/764085.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/764085.htmlTechArticle環境:linux ,apache2 ,php5 問題:開啟phpmyadmin出現如下錯誤: Cannot start session without errors, please check errors given in your PHP and/or webserver log file an...