When you log in to phpMyAdmin, you are prompted at the bottom of the page: "The configuration file now requires a phrase password. This means that you need to set a cookie password in the configuration file to prevent cookies from confusing.
/* * * the ' cookie ' Auth_type uses AES algorithm to encrypt the password. if* at least one server configuration uses ' Cookies ' auth_type, enter here A * pass phrase that would be is used by AES. The maximum length seems to be 46* characters.** @global string $cfg [' Blowfish_secret ']*/$cfg[' Blowfish_secret '] = ';
The workaround is divided into the following two steps:
The first step: the phpmyadmin/libraries/config.default.php in the
$cfg[' blowfish_secret '] = ';
Change into
$cfg[' blowfish_secret '] = ' 123456 ';
The ' 123456′ ' is a random character.
Step two: In the phpMyAdmin directory, open the config.sample.inc.php,18 line
$cfg[' blowfish_secret '] = ';
Change into
$cfg[' blowfish_secret '] = ' 123456 ';
The ' 123456′ ' is a random character.
Do the above two steps, refresh the webpage, OK, "the configuration file now requires a phrase password." "The hint does not exist!
The PhpMyAdmin configuration file now requires a phrase password