I just installed Wampserver 2.1 on my windows 7 64bit computer and the icon that should turn green, turns orange, saying that the server is not ready.

The result is that on opening the browser on http://localhost/ it just timed out.

anybody an idea, I tried google on this, but without any correct result.

The apache error log says this:

[Fri Mar 11 14:40:58 2011] [notice] Apache/2.2.17 (Win32) PHP/5.3.4 configured -- resuming normal operations[Fri Mar 11 14:40:58 2011] [notice] Server built: Oct 24 2010 13:33:15

[Fri Mar 11 14:40:58 2011] [notice] Apache/2.2.17 (Win32) PHP/5.3.4 configured -- resuming normal operations

[Fri Mar 11 14:40:58 2011] [notice] Server built: Oct 24 2010 13:33:15

[Fri Mar 11 14:40:58 2011] [notice] Parent: Created child process 4320

[Fri Mar 11 14:40:58 2011] [notice] Child 4320: Child process is running

[Fri Mar 11 14:40:58 2011] [notice] Child 4320: Acquired the start mutex.

[Fri Mar 11 14:40:58 2011] [notice] Child 4320: Starting 64 worker threads.

[Fri Mar 11 14:40:58 2011] [notice] Child 4320: Starting thread to listen on port 80.

[Fri Mar 11 14:40:58 2011] [notice] Parent: Created child process 4320

[Fri Mar 11 14:40:58 2011] [notice] Child 4320: Child process is running

[Fri Mar 11 14:40:58 2011] [notice] Child 4320: Acquired the start mutex.

[Fri Mar 11 14:40:58 2011] [notice] Child 4320: Starting 64 worker threads.

[Fri Mar 11 14:40:58 2011] [notice] Child 4320: Starting thread to listen on port 80.

so no mayor issues in my opinion.

versions running are: apache 2.2.17 php 5.3.4 mysql 5.1.53

If I use the service to test port 80, he does that ok, saying to me this:

Port 80 is actually being used by: Server: Apache/2.2.17 (win32) php/5.3.4

update: It still isn't solved after some months and Skype is not even installed and never has been installed on the computer.

link|improve this question

feedback

7 Answers

It is probably your Skype giving you a hard time. Try configuring your Skype this way:

Tools -> Options -> Advanced -> Connection -> Unchecking the 'Use port 80...'

I had the same problem and it worked for me.

link|improve this answer
or Teamviewer. Thats what it was for me – Gabriel Fair Feb 20 at 3:53
feedback

check the Apache port being used by your wamp at "http.conf" . Try changing the port to a number above 1024 and than restart apache. Than try to access the Apache server using a url like http://localhost:$PORT_NUMBER_HERE . If it works is because your user does not have permission to open a socket below 1024. This is common in unix environments but I am not a windows user to know if it has the same restrictions. Have a try.

You might also check the windows firewall and give access to the port being used, if the firewall is blocking it.

regards.

link|improve this answer
The conf file is probably under: wamp\Apache2\conf – Marcos Maia Mar 11 '11 at 14:17
That didn't do the trick. If I use the service to test port 80, he does that ok, saying to me this: Port 80 is actually being used by: Server: Apache/2.2.17 (win32) php/5.3.4 – Kennethvr Mar 11 '11 at 14:18
So check the firewall. Also test using telnet command from console: "telnet localhost 80" – Marcos Maia Mar 11 '11 at 14:23
1  
do you have skype installed? I have seen this problem with skype and wamp running at the same time. – Drewdin Mar 11 '11 at 14:23
nope skype isn't installed, that's the argument you read all over the internet :-) – Kennethvr Mar 11 '11 at 14:25
feedback

Check each service individually. MySQL uses port 3360 so that might be blocked as well.

On a personal note, I've been finding WAMP a problem after version 2.0i, so I switched to a Linux VM or even another computer running linux for my PHP development.

Try EasyPHP since you can install that onto a USB drive so you can keep the "WAMP" with you.

link|improve this answer
feedback

Check your hosts file. It should be located @ /windows/system 32/drivers/etc/

Edit the file in notepad or something similar and look for two lines that read something like

# 127.0.0.1 localhost and # ::1 localhost

Remove the # from the beginning of each line, save the file (make sure there is no file extension when you do) and then restart WAMP.

This should work, at least it did for me, but there are various other programs that can conflict with WAMP like Skype.

Hope this works

link|improve this answer
feedback

I just right clicked on Wamp and changed http.conf . the listening port was 80 and I changed it to 2000

Listen 2000

and everything worked like a charm

link|improve this answer
feedback

I just unchecked using port 80 from Skype advance settings and it start working fine.

Before that I had changed the mysql port 3306 to 3307 from mysql my.ini file

link|improve this answer
feedback

I had the same issue, and after reading this post, I found that here's what you need to do, if you're running both Wamp and Skype at the same time, to avoid issues. MAKE SURE YOU OPEN YOUR WAMP SERVER FIRST, THEN OPEN SKYPE. That eliminated the problem, I was able to connect to the WAMP server with no problem, and the icon was green :).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.