我不知道你用的是那个版本的phpmyadmin,目前最新版本已经是2.6了,我们下载回来是不能直接用的,需要做一些小修改才可以,发现很多新手还是不知道的,这里写了一个傻瓜教程,十分简单,就以下4步:
=====================================================
1
找到 $cfg['PmaAbsoluteUri']
在后面的''内把phpMyAdmin的地址打上,修改后如 $cfg['PmaAbsoluteUri'] = '
http://www.china.com/china';
2
找到 $cfg['blowfish_secret']
在后面的''内随便输入一些数字或字母,修改后如 $cfg['blowfish_secret'] = 'china';
3
找到 $cfg['Servers'][$i]['auth_type']
后面的''内默认为config,修改为cookie,修改后如 $cfg['Servers'][$i]['auth_type'] = 'cookie';
4
找到 $cfg['Servers'][$i]['user']
后面的''内默认是root,去掉,修改后如 $cfg['Servers'][$i]['user'] = '';