phpMyAdmin - Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

因為使用的是AppServ的WAMP

參考網址

http://javier3399.blogspot.tw/2013/09/windows-7-apache-mysql-php.html

某一次開啟phpMyAdmin

卻給我以下這個錯誤訊息

Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

根據

http://wiki.weithenn.org/cgi-bin/wiki.pl?PHP_Installation

要找C:\Windows\php.ini

加入以下參數

session.auto_start = 1                        //Default 0 (Disable this function)
session.save_path = "C:/Appserv/php5/temp"    //把暫存路徑移到此使用者可存取的路徑

則可以解決問題。