【发布时间】:2014-07-13 19:55:59
【问题描述】:
我最近刚刚在我的 Windows 7 64 位机器上安装了 WampServer 2.5 版。 当我尝试打开 phpmyadmin 时,我在浏览器中收到此消息:
我检查了我的config.inc.php 文件,一切似乎都很好。以下是内容:
* First server
*/
$i++;
/* Authentication type */
$cfg['Servers'][$i]['verbose'] = 'mysql wampserver';
//$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
/* Server parameters */
$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysql if your server does not have mysqli */
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
谁能解释一下这个问题? 非常感谢,我还应该指出 WAMP 图标是橙色的,这让我觉得可能某个特定服务可能没有运行。
【问题讨论】:
-
检查3306端口是否被其他服务或进程使用
-
您是否为 root 完成了所有授权?看看这对你有没有帮助,stackoverflow.com/questions/11223235/…
-
我刚刚安装了 WAMP 并尝试运行它。除此之外,我没有调整核心文件夹中的任何内容。
-
你可以在这里找到答案stackoverflow.com/questions/5993894/…
标签: php mysql phpmyadmin localhost wamp