The phpmyadmin configuration file now requires a top secret phrase password. When using phpmyadmin, we may encounter a top-secret phrase password error message in The phpmyadmin configuration file. below I will summarize the solution for you, if you want to know more about phpmyadmin, we may encounter a prompt that The phpmyadmin configuration file requires top secret phrase and password. I will summarize the solution for you, for more information, see.
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 Upload server.
Then
The code is as follows: |
|
$ Cfg ['blowfish _ secret'] = "; |
Or other values.
The above describes how to solve the problem in linux
The "$ cfg ['blowfish _ secret'] =" statement in phpmyadmin installed in CentOS is in config. inc. php.
The code is as follows: |
|
Vim/usr/share/phpmyadmin/config. inc. php
|
Find
The code is as follows: |
|
$ 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.
...