我在WAMP中有一个查询

时间:2013-11-03 06:45:54

标签: phpmyadmin wamp

我在安装后在Windows 7中安装了WAMPSERVER我打开phpMyAdmin它会询问用户名和密码。

在此之前我没有使用过WAMP服务器。你的默认用户名和密码是什么?

2 个答案:

答案 0 :(得分:1)

更改config.default.php中的数据库配置值:

$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '3306';
$cfg['Servers'][$i]['ssl'] = false;
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'YOUR_Password';

答案 1 :(得分:0)

可能是这样的:

http://localhost/phpmyadmin
Username: root
Password:

密码为空(未设置密码)。 您还可以在此行添加C:\wamp\phpmyadmin\config.inc.php文件:$cfg['Servers'][$i]['AllowNoPassword'] = TRUE;