phpmyadmin Cannot start session without errors 错误解决 和空密码无法登陆

phpmyadmin Cannot start session without errors 错误

解决:

打开php.ini

修改下面路径

session.save_path = “D:/shanmaoweb/php/tmp”

目录必须存在

然后又出现空密码无法登陆“Login without a password is forbidden by configuration”

解决:

默认phpmyadmin空密码登录是被禁止的,这一行为主要通过配置文件libraries/config.default.php中的两个全局变量控制,即

1
2
3
$cfg[‘Servers’][$i][‘nopassword’] = false;

$cfg[‘Servers’][$i][‘AllowNoPassword’] = false;

只要修改这两个变量,设定为True,phpmyadmin就会允许以空密码方式登录,即修改libraries/config.default.php中的

1
2
3
$cfg[‘Servers’][$i][‘nopassword’] = true;

$cfg[‘Servers’][$i][‘AllowNoPassword’] = true;

同时将

1
$cfg[‘Servers’][$i][‘password’] = ”;

设置数据库连接密码设为空密码,即告成功。