PhpMyAdmin attempts to connect to the MySQL server, but the server rejects the connection. You should check the host, user name, and password in the configuration file and confirm that the information is consistent with the information given by the MySQL server administrator. The reason for this may be because the password for the MySQL database has been modified. Workaround: 1) Modify the $cfg in the config.inc.php under phpMyAdmin [' Servers '] [$i] [' password '] = '; options 2) Modify $cfg[' Servers ' [$i] [' auth_type '] = ' http '; Modify to HTTP Of course, there may still be an error here, because this is caused by IE cache, choose IE Internet Options, general-"clear browsing history, clear the cache to resolve the problem The following is the configuration information for the database configuration in config.inc.php: has a config.inc.php in the phpMyAdmin directory, you can open it with Notepad, and then in the /* Authentication type and Info * * The following $cfg [' Servers '] [$i] [' auth_type '] = ' config '; $cfg [' Servers '] [$i] [' user '] = ' root '; $cfg [' Servers '] [$i] [' password '] = ' ************* '; //Database password $cfg [' Servers '] [$i] [' Extension '] = ' mysql '; This file is the PHP admin configuration file, I changed the password is 123, after encryption, tried a few times not, only to find that should enter the encrypted password, verified in the shell can be directly landed. |