欢迎使用 phpmyadmin 2.7.0-pl1
phpmyadmin 试图连接到 mysql 服务器,但服务器拒绝连接。您应该检查 config.inc.php 中的主机、用户名和密码,并且确定这些信息与 mysql 服务器的管理员所给出的信息一致。
错误
mysql 返回:
#1045 - access denied for user 'root'@'localhost' (using password: yes)
到www的文件夹下面,找到
config.inc.php文件中这一行
authentication method (config, http or cookie based)?
$cfg['servers'][$i]['user'] = 'root'; // mysql user
$cfg['servers'][$i]['password'] = 'sa';
把'sa'改为你自己的密码
,
