|
Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.
1:將php.ini中的session.auto_start的值改為1(啟動),默認是0(禁用)
2:把phpmyadmin目錄下的config.inc.php
/* Authentication type */ }
/* Authentication type */
$cfg[ 'Servers '][$i][ 'auth_type '] = 'cookie ';
改成
/* Authentication type */
$cfg[ 'Servers '][$i][ 'auth_type '] = 'http ';
|
|