Home >Backend Development >PHP Tutorial >我的win7装上wampserver2.0后phpmyadmin一直不能用

我的win7装上wampserver2.0后phpmyadmin一直不能用

WBOY
WBOYOriginal
2016-06-23 14:09:141060browse

我一开始没有用集成环境,是单独装的php、apache、还有phpmyadmin,现在改用wamp之后phpmyadmin总是报错#1045 - Access denied for user 'root'@'localhost' (using password: NO),我查找了一下config.inc.php,但是发现文件里有一个叫config.inc.php还有一个叫config.sample.inc.php的文件前者没有改密码和用户名的代码行,后者有,但是我也不能把它的文件名改成config.inc.php
我都怀疑是之前的没有卸载干净


小菜鸟在这里,求大神指导呀!!!!!


回复讨论(解决方案)

把localhost换成127.0.0.1试试

libraries/config.default.php
187 行左右
/**
 * MySQL user
 *
 * @global string $cfg['Servers'][$i]['user']
 */
$cfg['Servers'][$i]['user'] = 'root';//填写用户名

/**
 * MySQL password (only needed with 'config' auth_type)
 *
 * @global string $cfg['Servers'][$i]['password']
 */
$cfg['Servers'][$i]['password'] = '';//填写口令

如没有口令应修改(227行附近)
$cfg['Servers'][$i]['nopassword'] = true;// 默认是 false

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn