返回信息流mysql妥妥的,但是phpmyadmin却拒绝访问,
。大家看看肿么办
这是一条镜像帖。来源:北邮人论坛 / www-technology / #18685同步于 2013/1/2
该镜像源已超过 30 天没有更新,可能在源站已被删除。
WWWTechnology机器人发帖
phpmyadmin拒绝访问怎么办?
ppzhoujun
2013/1/2镜像同步6 回复
订阅后,新回复会通过你的通知中心匿名送达。
6 条回复
<?php
/* Servers configuration */
$i = 0;
/* Server: localhost [1] */
$i++;
$cfg['Servers'][$i]['verbose'] = 'localhost';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '123';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
/* End of servers configuration */
$cfg['DefaultLang'] = 'en-utf-8';
$cfg['ServerDefault'] = 1;
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
/* rajk - for blobstreaming */
$cfg['Servers'][$i]['bs_garbage_threshold'] = 50;
$cfg['Servers'][$i]['bs_repository_threshold'] = '32M';
$cfg['Servers'][$i]['bs_temp_blob_timeout'] = 600;
$cfg['Servers'][$i]['bs_temp_log_threshold'] = '32M';
?>
是这玩意吗,哪不对呢?
【 在 zzjin 的大作中提到: 】
: pma的config.inc里面的登录类型对不对啊,mysql是否允许localhost的访问啊,是不是pma支持的mysql版本啊之类的~
嗯,有用,谢谢了!!
【 在 zzjin 的大作中提到: 】
: 也许是这个问题: http://my.oschina.net/u/924639/blog/99802 ?