The following tutorial column of phpmyadmin will introduce to you the solution to the problem that phpmyadmin in wamp cannot be opened. I hope it will be helpful to friends in need!
#This problem occurs basically because you have used mysql with a black screen under wamp, and the password when entering is not empty.
Solution:
1. Find the old version of config.inc.php
in the phpmyadmin folder
The new version is in the wamp\apps\phpmyadmin4.1.14 folder
This file has the following lines
$cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = ''; $cfg['Servers'][$i]['AllowNoPassword'] = true;
Just set the password to the password of your database root account
For example, my password is root, so change it to root
The above is the detailed content of Why can't phpmyadmin in wamp be opened? (Attached is the solution). For more information, please follow other related articles on the PHP Chinese website!