Home >Backend Development >PHP Tutorial >phpmyadmin login prompt profile now requires a phrase password_PHP Tutorial
The phrase password is used by phpmyadmin to prevent confusion when multiple logins occur, so we are required to configure the $cfg['blowfish_secret'] phrase password in config.sample.inc.php. Let me introduce the solution to you.
The configured phpmyadmin3.2.4 is used to manage the MySQL database. After logging in, the bottom of the page prompts: 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 any characters within the two single quotes after $cfg['blowfish_secret'] = ' '; to enhance password security.
Specific solutions
1. Change
代码如下 | 复制代码 |
$cfg['blowfish_secret'] = ''; |
changed to
The code is as follows
|
Copy code
|
||||||||||||
$cfg['blowfish_secret'] = 'bKjia.c0m';
2. In the phpMyAdmin directory, open config.sample.inc.php, line 18
|