首页 > 代码库 > WAMP不能进入phpMyAdmin页面的解决方法

WAMP不能进入phpMyAdmin页面的解决方法

进入wamp\apps\phpmyadmin目录找到config.inc.php 文件,用记事本打开,查看下面部分并修改:

$cfg[‘Servers‘][$i][‘host‘] = ‘localhost‘;

$cfg[‘Servers‘][$i][‘port‘] = ‘3306‘;

$cfg[‘Servers‘][$i][‘user‘] = ‘这里填写MySQL用户名‘;

$cfg[‘Servers‘][$i][‘password‘] = ‘这里填写MySQL密码‘;

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

保存 config.inc.php 后,重启服务器即可访问 phpmyadmin 了。