Reputation:
Recently I installed skype and am aware of the skype port conflict error. I have removed 'use port 80 and 443 as alternatives for incoming connections' from options and still no luck.
I have also uninstalled skype, reinstalled it and restarted my machine several times to no avail. Also, I just tried to run my torrent client and I am getting an error for the first time.
http://localhost/
won't load now.
Upvotes: 2
Views: 4492
Reputation: 89
Under Apache open the httpd.conf and change the lines
#Listen 12.34.56.78:80
Listen 80
to
#Listen 12.34.56.78:80
Listen **8080**
Save the file and select “restart all services”, it is done.
Upvotes: 0
Reputation: 402
I had the same problem, i did not have skype or any other app that might be using port 80.
I finally figured it was one of my Virtual Hosts causing issues, maybe try removing all your Vhosts or just un-comment: Include conf/extra/httpd-vhosts.conf
Hope this helps.
Upvotes: 1
Reputation: 343
I ran into this same exact issue. I tested port 80 by clicking on the wamp icon, going to Apache, and then service, and then test port 80. It said that port 80 was currently being used by Microsoft-HTTPAIP/2.0. After a bit of research, I found out that was was a process from Microsoft Reporting Services (result of installing SQL Server 2008). I stopped the service from within the services console, and voila! It worked fine.
Upvotes: 3