Okay so a continuation from this question, where you experts intro'd me to WAMP, which can basically execute PHP within a Windows XP environment.

So now I've got it installed, but the tray icon forever shows YELLOW, and when I visit any PHP page in my browser, it just shows me the PHP source!

Also, when I visit "http://localhost/" in IE7 it gives me a 404 Not Found, FF3 just shows a blank page.


BTW I've tried "Restart All Services" and restarting my machine, but it still won't work.

Any ideas? Any of you had this problem and solved it? Please help me here, I'm desperate to execute PHP client-side and I'm just reverting to testing on-server for now!

link|improve this question

feedback

7 Answers

up vote 23 down vote accepted

Skype reserves port 80 for its incoming connection which conflicts with WAMP, so simply configure Skype to use another port by doing the following:

In Skype go to Tools|Options|Advanced|Connection uncheck the option --> Use port 80 and 443 as alternatives for incoming connections, that's it

For this change to take effect restart Skype and Restart all services on WAMP by doing the following:

Left-click WAMP tray icon > Restart All Services"

Now Wamp and Skype can co-exist together, hope this solves your problem!!

link|improve this answer
Genius of an idea! I thought this would be tricky to configure.... – Jenko Jan 31 '09 at 12:18
thanks a lot I was stucked trying to find out the problem for a long time. – Attilah Jan 14 '10 at 14:35
Thanks for that! I was stuck.... – JDelage Sep 3 '10 at 16:35
ur welcome glad to help! – rzlines Sep 3 '10 at 21:46
Thanks! I had been developing a project for 2 weeks that I needed to show my supervisor in 12 hours and for the 1st time my WAMP server stopped working---stressing---this solution was a big relief! – indiehacker Oct 24 '10 at 18:20
feedback

Glad you got it sorted - Skype is notorious for that.

If you want to use Skype and WAMP together, you can edit your httpd.conf file - change the 'listen' value from 80 to something else and restart all services.

link|improve this answer
feedback

Got it! Under the WAMP tray icon, left-click context menu > Apache > Service > Test Port 80, it said :

"Your port 80 is actually used by - Info not available, Must be Skype"

Well, so off goes Skype, WAMP > Restart All Services, and Localhost shows "WAMP5 Homepage":

Localhost WAMP CP

And, phpMyAdmin works, PHP scripts execute too. Wow!

So now I can dubug in the proper fashion! Thank you StackOverflow!

link|improve this answer
ah yes - skype on port 80 had me puzzled a couple of times as well - nice that WAMP provides a hint! Good to hear it works now. – Simon Groenewolt Jan 4 '09 at 11:53
Take it a step further for easy access to php lint. Put C:\wamp\bin\php\ (or whatever the path to the directory with your php.exe file is) in your user PATH variable and then you have PHP CLI (command line interface) and you can open cmd.exe and php -l file.php and it'll tell you where the syntax errors are. You can also execute one liners very quickly with php -r "code;" – Milo LaMar Dec 31 '11 at 13:19
feedback

just go to wamp>bin>apache>apache 2.2.17>conf>httpd.conf (file) change Listen 80 to Listen 8080 save the file n restart the services this time type http://localhost:8080

link|improve this answer
feedback

you can start Skype up after wamp is online or change Skypes port not to use 80

link|improve this answer
feedback

Teamviewer can cause this too.

link|improve this answer
feedback

Well, in case the above still dont help as it was with me, follow these steps:

  • Change your apache port (from httpd.conf) to something else, say 8056, at the two places where port 80 occurs in the file
  • Then change your browser proxy appropriately. i.e the proxy to "localhost" and the port to your "8056".
  • Save the file and restart Wamp Services
  • Launch localhost in your browser

Hope it works! A better approach is really needed.

link|improve this answer
feedback

protected by Community Sep 17 '11 at 1:07

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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