phpMyAdmin的index页面只显示“MySQL返回:无法连接:无效的设置。”解决方法:
原因 在 本地D:\xampp\phpMyAdmin 中修改了config.inc.php 中的空密码为 我的密码 。数据库中怎么也没改
解决方法:
找到phpMyAdmin的配置文件config.inc.php
将其中的
$cfg[‘Servers’][$i][‘auth_type’] = ‘config’;
改为:
$cfg[‘Servers’][$i][‘auth_type’] = ‘cookie’;
就OK了~
|