WampServer无法直接打开myprojects的解决方法
解决从phpmyadmin页面中进入myproject链接问题
1.进入wamp安装路径文件,找到wamp/www/index.php,用文本编辑器打开index.php文件。
2.找到$suppress_localhost = true;这一句(楼主2.5版本这一句在第30行),把它改为$suppress_localhost = false;
3.查照<a href="'.($suppress_localhost ? 'http://' : '').$file.'">'.$file.'</a>字段(在第338行),在http://后面加上localhost/,即为<a href="'.($suppress_localhost ? 'http://localhost/' : '').$file.'">'.$file.'</a>
解决从软件托盘进入myprojects的链接问题
1.进入wamp安装路径文件,找到wamp/scripts/refresh.php,用文本编辑器打开refresh.php文件。
2.找到Parameters: "http://'.$projectContents[$i].'/"; Glyph: 5字段(在651行),改为Parameters: "http://localhost/'.$projectContents[$i].'/"; Glyph: 5
解决进入项目文件后图标缺失的问题
1.进入wamp安装路径文件,找到wamp\bin\apache\apache2.4.9\conf\extra\httpd-autoindex.conf,用文本编辑器打开httpd-autoindex.conf文件。
2.找到以下代码(大约在21行)
Alias /icons/ "c:/Apache24/icons/"
<Directory "c:/Apache24/icons">
3.改为以下代码
Alias /icons/ "c:/wamp/bin/apache/apache2.4.9/icons/"
<Directory "c:/wamp/bin/apache/apache2.4.9/icons">
4.注意:第三步中图标路径应该写你的wamp下对应Apache的路径,而且第一个路径中最后有一个斜杠,第二个路径最后没有斜杠
网友评论