我刚刚通过 wampserver 安装了 WAMP,并且在 Windows 2008 上与 IIS 一起运行它。当尝试打开 phpadmin 时,出现上述浏览器错误。
编辑:问题似乎出在 Windows 2008 上。我根本无法连接到 127.0.0.1。我尝试过禁用 ipv6 和防火墙(只是为了测试),但这些都不起作用。
我完全无法访问 localhost。
答案1
好的,伙计们,最后我唯一能用的方法就是在 httpd.conf 文件中添加 listen 127.0.0.1:80。非常感谢你们的帮助!
答案2
你看过 C:\wamp\apps\phpmyadmin3.4.5\config.inc.php 文件了吗?尝试将 localhost 更改为 apache 监听的 IP
$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'] = '';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
答案3
我认为您在 Internet Explorer 中手动或通过 PAC 设置了代理。如果设置不正确,Internet Explorer 会将流量发送到代理,即使是本地主机。
从服务器添加 Telnet 客户端功能。然后尝试telnet 127.0.0.1 80
从 cmd 中运行。必须出现空白屏幕(ctrl + $ 退出)