Reputation: 49
I have been using wamp 2.0 version for about a year. After which I decided to upgrade to a newer version of 2.2 or 2.5. I uninstalled the 2.0 version and copied all my files to another location. After the new version installation apache did not startup. I test the port 80 and it displays "Your port 80 is not actually used". I have tried as many as possible installation and deletion of the wamp folder before installing another version. But after series of test the 2.0 version is still working perfectly when installed again, but I insists on using the newer version, just to get the new features to be used. Any help will be appreciated. I have google searched for over 24 hours now. Fellow programmer please help me. Thanks in advance
Upvotes: 3
Views: 27399
Reputation: 97
You might not be started the MySql Service. So Answer in steps:
START APACHE
(Step 3 will open command prompt "Your port 80 is not actually used" showing in your case. So u have started apache already. If port 80 is used by another program like skype it will appear there too.It will be another TOPIC)
NOW START MYSQL
LEFT CLICK ON ICON AND RESTART ALL SERVICE
Upvotes: 3
Reputation: 131
it is too late for answering this question.... i also faced this problem. When my port 80 is never being used, i reinstalled wamp server again. Now it runs fluently
Upvotes: 0
Reputation: 4666
I know that this is an old question but I had the same problem and the solution was easy at my side.
My server was listening to port 8080. So when I tested port 80 I showed the error the questioner is having. I opened httpd.conf in a text editor. httpd.conf is located at.
wamp\bin\apache\apache2.4.9\conf\httpd.conf
On line 62 or so you need to make sure Apache is listening to port 80. Set the value of that line to:
Listen 80
Save the file, and restart All Services on WAMP.
Now, its time for a test.
netstat -ao
command (more info https://technet.microsoft.com/nl-nl/library/bb490947.aspx)0.0.0.0:80
and it has a specific PID.Upvotes: 1
Reputation: 4425
well, this happened to me as well, so, I searched a bit and found very very nice solution. Now a days I'm using Ampps, give it a try, you'll love it.
PS. I used wamp for 4 years, I was a big fan of wamp, but now I'm in love with Ampps :)
As per Shomz comment
to prevent Skype from using port 80
, Login to Skype, then Click Tools->Options
(or just press ctrl+,
) Then on the left side, click on Advanced
and Choose Connection
, then on right side remove check of check box saying
Use port 80 and 443 for additional incoming connections.
and restart Skype.
have a good day.
Upvotes: 2