When using phpmyadmin, we may encounter an error message indicating that the phpmyadmin configuration file requires a top secret phrase and password. the configuration is as follows: phpmyadminconfigincphp. the code is as follows: & lt ;? Php
When phpmyadmin is used, we may encounter a top-secret phrase password error message in The phpmyadmin configuration file. the configuration is as follows: phpmyadmin/config. inc. php. the code is as follows:
-
- $ Cfg ['servers'] [$ I] ['auth _ type'] = 'cooker ';
- $ Cfg ['blowfish _ secret '] = 'sakia'; ("sakia" custom)
- ?>
If your phpmyadmin does not contain config. inc. in the php file, we need to find a file named "config." in The phpMyAdmin file. sample. inc. php, and rename it as "config. inc. php "is uploaded to the server, and Then: $ cfg ['blowfish _ secret'] ="; or other values.
The above section describes how to solve the problem in windows. if it is in linux, the "$ cfg ['blowfish _ secret '] =" statement in phpmyadmin installed in CentOS is in config. inc. php.
Vim/usr/share/phpmyadmin/config. inc. php find $ cfg ['blowfish _ secret '] = '';/* you must fill in this for cookie auth! */Add any character after =. the code is as follows:
$ Cfg ['blowfish _ secret '] = 'poo';/* you must fill in this for cookie auth! */
Pooy is a random character.