作者: Tscccn |
日期: 2010 年 09 月 11 日 |
围观: 4874次+ |
没有评论
解决 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'; |
[……]
最新评语