简体   繁体   English

phpmyadmin 在安装 wamp 服务器 2 后停止工作

[英]phpmyadmin stopped working after installing wamp server 2

hi had a working phpmyadmin which stopped working when i installed a new version of wamp 2 for windows 32bit.嗨,有一个工作 phpmyadmin 当我为 windows 32bit 安装新版本的 wamp 2 时停止工作。

Now i have mysqlBuddy appearing in my localhost homepage and it mysqlBuddy works but when i click on phpmyadmin it doesn't work.现在我的 localhost 主页中出现了 mysqlBuddy,它 mysqlBuddy 可以工作,但是当我点击 phpmyadmin 时它不起作用。 The error i am getting is Access Denied .我得到的错误是Access Denied please read below error.请阅读以下错误。

> Error
>     
>         MySQL said: Documentation Cannot connect: invalid settings.
> phpMyAdmin tried to
> 
>  connect to the MySQL server, and the
> server rejected the connection.  You
> should check the host, username and
> password in your configuration and
> make  sure that they correspond to the
> information given by the 
> administrator of the MySQL server.

i have checked the config.inc.php file which is under the phpmyadmin folder to see the config settings and they are all ok我检查了 phpmyadmin 文件夹下的 config.inc.php 文件以查看配置设置,它们都正常

/* Server: localhost [1] */
$i++;
$cfg['Servers'][$i]['verbose'] = 'localhost';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['AllowNoPassword'] = true;

i do not know how else i can fix this.我不知道我还能如何解决这个问题。 ? ?

Just to cover all bases - Have you tried restarting WAMP server after changing PHPMyAdmin's configuration?只是为了涵盖所有基础-您是否尝试在更改 PHPMyAdmin 的配置后重新启动 WAMP 服务器?

If you still cannot connect, try resetting your MySQL root password by following the instructions here .如果您仍然无法连接,请尝试按照此处的说明重置您的 MySQL 根密码。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM