安装后我在 Windows 7 中安装 WAMPSERVER 我打开 phpMyAdmin 它询问用户名和密码。
在这是第一次之前,我没有使用 WAMP 服务器。你的默认用户名和密码呢?
安装后我在 Windows 7 中安装 WAMPSERVER 我打开 phpMyAdmin 它询问用户名和密码。
在这是第一次之前,我没有使用 WAMP 服务器。你的默认用户名和密码呢?
更改 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';
大概是这样的:
http://localhost/phpmyadmin
Username: root
Password:
密码为空(未设置密码)。您还可以C:\wamp\phpmyadmin\config.inc.php
将这一行添加到您的文件中:$cfg['Servers'][$i]['AllowNoPassword'] = TRUE;