phpMyAdmin的内部配置(这里讲解的是本地配置)
1.打开解压后的libraries文件目录下的config.default.php文件进行修改
2.$cfg['PmaAbsoluteUri'] = '';配置phpMyAdmin的访问网址,这里我将phpMyAdmin放在集成环境xampp下面的htdoc下,也就是根目录,因此这里我填的是http://localhost/phpMyAdmin,区分大小写
3.$cfg['Servers'][$i]['host'] = ''; 填写的是MySQL的主机信息,这里我用的是本地,因此填写localhost
4.$cfg['Servers'][$i]['port'] = '';填写的是MySQL的端口号,默认使用的是3306
5.$cfg['Servers'][$i]['user'] = 'root'; MySQL使用的用户名
fg['Servers'][$i]['password'] = ''; MySQL使用的密码
6.$cfg['Servers'][$i]['auth_type'] = 'cookie';认证方法,最好填写cookie
$cfg['blowfish_secret'] = '';短语验证密码设置,如果上面设置的是cookie,就必须要设置这里的短语验证密码,而且这里设置的密码不能太短,否则就无效