解决 phpMyAdmin 提示:配置文件现在需要一个短语密码
编辑phpMyAdmin/config.inc.php
找到:
1 |
$cfg['blowfish_secret'] = ''; |
改为:
1 2 |
$cfg['blowfish_secret'] = 'abce1234'; //设置短语密码:abce1234,该密码随意设置 |
找到:
1 |
$cfg['Servers'][$i]['auth_type'] = ''; |
改为:
1 |
$cfg['Servers'][$i]['auth_type'] = 'cookie'; |
- THE END -
Category: PHPmyadmin
0 条评论。