以下修改均在phpMyAdmin目录下config.inc.php文件中进行
且认证方式为config,即$cfg['Servers'][$i]['auth_type'] =
'config'
1.修改用户名与密码
$cfg['Servers'][$i]['user'] = '用户名'
$cfg['Servers'][$i]['password'] = '密码'
2.是否允许空密码
若设置的登陆用户名需要提供密码,必须关闭允许空密码登陆功能,否则会无法登陆
把这两个选项:
$cfg['Servers'][$i]['nopassword']
(该配置项含义:Whether to try to connect without password)
$cfg['Servers'][$i]['AllowNoPassword']
(该配置项含义:whether to allow login of any user without a
password)
都设置为ture则为允许空密码登陆,此时对应登陆用户名密码为空;
若设置为false则不允许空密码登陆,此时对应的登陆用户名要提供正确的密码。
注意,如果设置以后仍无法正常登陆,请清除浏览器的cookie。