解决WampServer安装后无法打开localhost

今天装完wampserver之后,打开localhost,一直出现IIS7的标志,刚开始还笨笨的以为没有装好,准备重装的时候,发现服务里面本该打开的两个服务:

其中apache服务器貌似没有启动,但是手动打开的时候一直也起不来,联想之前IIS7,感觉可能是端口占用问题,OMG,当初按照IIS服务的时候就有过这个问题,讨厌~

打开Wamp按照路径:D:\php\wamp\bin\apache\Apache2.2.21\conf,修改其中的 httpd.conf ,发现listen的端口果然是80,嘿嘿,果断改为88.

之后重启wamp,无压力呀~

刚开始搞这个东西,嘿嘿,感觉开头总是笨手笨脚的。。。come on!

时间: 2024-12-11 05:47:29

解决WampServer安装后无法打开localhost的相关文章

Centos 6.5中安装后不能打开emacs的问题

问题的发现过程: 安装了最新的centos版本后发现居然打不开emacs,然后在终端中输入emacs后还是不能打开,出现了下面的提示: emacs: error while loading shared libraries: libotf.so.0: cannot open shared object file: No such file or directory 然后就在网上查找资料,可是由于centos本来就是刚刚发布的,相关解决方法没有,不过相关的有一些,综合他们的方法,终于解决了这个问题

jupyter安装出现问题:安装后无法打开

jupyter安装出现问题:安装后无法打开 traitlets.traitlets.TraitError: Could not decode 'C:\Users\\xce\xa2\xcc\xf0\xd0\xc4\xd3\xef\.jupyter' for unicode trait 'config_dir' of a NotebookApp instance. 解决办法:将下面一段代码保存为py文件,文件名为“python jupyter_nootbook_start.py”,以后运行该文件即可

解决VS2015安装后stdio.h ucrtd.lib等文件无法识别问题,即include+lib环境变量配置

转载自:http://blog.csdn.net/carl_qi/article/details/51171280 今天突然想在windows上装个 VS2015 玩玩,结果遇到了如下bug: 安装完 VS2015 后,直接新建项目->win32控制台->运行,结果报错! "无法打开包括文件: “stdio.h”: No such file or directory” "lnk1104:无法打开文件 ucrtd.lib ” 奇了怪了,stdio.h 和 ucrtd.lib

解决VS2015安装后stdio.h ucrtd.lib等文件无法识别问题

今天突然想在windows上装个 VS2015 玩玩,结果遇到了如下bug:安装完 VS2015 后,直接新建项目->win32控制台->运行,结果报错!"无法打开包括文件: "stdio.h": No such file or directory""lnk1104:无法打开文件 ucrtd.lib "奇了怪了,stdio.h 和 ucrtd.lib 都是 VS 自带的头文件和库文件,都无法识别,所以第一反应就是这个头文件和库文件的目

wampserver安装后常用设置

1.新版WampServer项目路径前面没有localhost 方法:www目录下找到index.php 然后修改里面查找$projectContents 或直接查看338行代码 修改'http://'为'http://localhost/'即可. 一.修改Apache端口 1.在界面中选Apache,弹出隐藏菜单选项,打开配置文件httpd.conf: 2.找到 Listen 80: 3.将 80 改成 8080(当然自己也可以设定别的不使用的端口); 4.保存,待重启Wamp服务后即可. 二

XAMPP错误: Apache shutdown unexpectedly解决办法 & 更改Apache端口号后如何打开localhost的解决办法 by yojiaku

---恢复内容开始--- 今天,在启动XAMPP中Apache时遇到了这样的问题: 14:42:24  [Apache]  Error: Apache shutdown unexpectedly.14:42:24  [Apache]  This may be due to a blocked port, missing dependencies, 14:42:24  [Apache]  improper privileges, a crash, or a shutdown by another

解决ubuntu18.04系统下网易云音乐安装后无法打开问题

第一步:在终端修改sudoers sudo gedit /etc/sudoer # 在打开的文本编辑器中,最后添加一行(felix为我的用户名) felix ALL = NOPASSWD:  /usr/bin/netease-cloud-music # 保存退出 第二步:修改网易云音乐的启动图标 sudo gedit /usr/share/applications/netease-cloud-music.desktop # 修改Exec这一行 Exec = sudo netease-cloud-

wampserver安装后访问localhost出现 Forbidden问题

Forbidden You don't have permission to access / on this server. 修改php的配置文件httpd.conf. 在原有的位置文件中找到配置节 <Directory />    Options FollowSymLinks    AllowOverride None    Order deny,allow    Deny from all    Satisfy all</Directory> 修改成 <Director

android安卓升级版本安装后自动打开弹出完成和打开新版应用界面

public void installApk(File file,Context ctx) { Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setDataAndType(Uri.fromFile(file),"application/vnd.android.packagearchive"