Phpmyadmin logon prompts that a phrase password is required for the configuration file. The phrase password is phpmyadmin. to prevent confusion during multiple logins, we need to configure config. sample. inc. in php, $ cfg [blowfish_secret] refers to the phrase password. below I will give it to phpmyadmin. to prevent confusion during multiple logins, we need to configure config. sample. inc. $ cfg [\ 'blowfish _ secret \ '] phrase and password in php. I will introduce the solution below.
The configured phpmyadmin3.2.4 is used to manage the MySQL database. after logging on to the MySQL database, the following prompt is displayed: the configuration file now requires a phrase password.
Solution: Edit the config. inc. php file IN the phpmyadmin directory and find $ cfg ['blowfish _ secret'] = '';/* you must fill in this for cookie auth! */
Enter some characters in the $ cfg ['blowfish _ secret'] = ''; followed by two single quotes to enhance password security.
Solution
1. in phpMyAdmin/libraries/config. default. php
The code is as follows: |
|
$ Cfg ['blowfish _ secret'] = ''; |
Change
The code is as follows: |
|
$ Cfg ['blowfish _ secret'] = 'bkjia. c0m '; |
(Note: 'bkjia. c0m' is a random character)
2. in The phpMyAdmin Directory, open config. sample. inc. php, line 18.
The code is as follows: |
|
$ Cfg ['blowfish _ secret'] = ''; |
Cheng
The code is as follows: |
|
$ Cfg ['blowfish _ secret'] = 'bkjia. c0m '; |
(Note: 'bkjia. c0m' is a random character)
This password is used to encrypt Cookies to avoid mixing multiple PhpMyAdmin instances or sharing Cookies with other programs.
Phrase $ cfg [\ 'blowfish _ secret \ '] phrase password. I will give it to you next...