程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> phpMyAdmin Cannot start session without errors錯誤解決辦法

phpMyAdmin Cannot start session without errors錯誤解決辦法

編輯:關於PHP編程

環境: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 ...錯誤處理辦法

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved