The new version of phpMyAdmin enhances security and requires a phrase password to be set in the configuration file. Otherwise, there will be "
configuration file now requires a phrase password"The red Alert sighs.
Workaround:
1, the phpmyadmin/libraries/config.default.php in the
$cfg [' blowfish_secret '] = '; Change to $cfg [' blowfish_secret '] = ' 123456 '; (Note: The ' 123456′ ' is a random character)
2. In the phpMyAdmin directory, open the config.sample.inc.php,18 line
$cfg [' blowfish_secret '] = '; Change to $cfg [' blowfish_secret '] = ' 123456 '; (Note: The ' 123456′ ' is a random character)
This password is used for the encryption of cookies to avoid confusing multiple phpmyadmin or sharing cookies with other programs.
Do the above two steps, refresh the webpage, OK, "the configuration file now requires a phrase password." "The hint does not exist!
http://www.bkjia.com/PHPjc/364582.html www.bkjia.com true http://www.bkjia.com/PHPjc/364582.html techarticle The new version of phpMyAdmin enhances security and requires a phrase password to be set in the configuration file. Otherwise the configuration file will now need a phrase password for the red alarm sigh hint. ...