When using phpmyadmin, we may encounter the error message that the phpmyadmin configuration file now requires a top-secret phrase password. Let me summarize the solution for you. Friends who need to know can refer to it.
The configuration is as follows: phpmyadmin/config.inc.php
The code is as follows
|
Copy code
|
||||||||||||||||||
$cfg['Servers'][$i]['auth_type'] = 'cookie'; $cfg['blowfish_secret'] = 'sakia'; ("sakia" is customized)
If there is no config.inc.php file in your phpmyadmin, we need to find a file "config.sample.inc.php" in the phpMyAdmin file, and then rename it to "config.inc.php" to upload to the server. Then put
or other value can be
Then the "$cfg['blowfish_secret'] =" statement in phpmyadmin installed under CentOS is in config.inc.php |
The code is as follows | Copy code |