网上常见的 phpMyAdmin安装文章都是老版本的.phpMyAdmin-2.8.2的配置文件在
phpMyAdmin\libraries\config.default.php.
(将config.default.php拷贝到phpmyadmin的目录下并改名为:config.inc.php
很多网友在第一次安装phpmyadmin在phpmyadmin更改数据库密码后就不能访问phpmyadmin 大部分是却少这个配置文件。)
配置:config.inc.php
 
 
$cfg['Servers'][$i]['auth_type']     = 'config';    // Authentication method (config, http or cookie based)?
这样就可以使用了,为了安全要设置 $cfg['Servers'][$i]['auth_type']   
为http或cookie哦,这样登陆 phpMyAdmin时就要身份验证了.如图:

设置中文支持
$cfg['DefaultLang'] = 'zh-gb2312';
$cfg['DefaultCharset'] = 'gb2312';
 
 在45行   $cfg['blowfish_secret'] = 'admin';设置一个需要绝密的短语密码(blowfish_secret)。 在这里我设置短语密码为admin 如果不设置访问就会报以下错误:
 
用户名和密码和连接MySQL的一样.