Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have tried to install WAMP, APPServ but when i go to http://localhost it go into XAMPP which is previously install on the computer. how to select that which one i am going to use on localhost.

share|improve this question
You can have only one webserver running on a port. Either remove/deconfigure xammp, or run wamp on a different port. – Marc B May 3 '12 at 4:40

2 Answers

up vote 1 down vote accepted

Edit http.conf file in notepad usually located in C:\wamp\Apache2\conf .

then do either CTL+F or go to EDIT/FIND from the notepad menubar. this will open FIND window.

type 80 in the 'Find What' box and click find next. replace 80 to whichever port to want apache to listen to. you may have to change to two or more places depending on your configuration. and then restart your apache server. Apache should listen to the port you set in the http.conf file. Hope this helps

share|improve this answer
it can not be any port, some ports are restricted and used by other software. – Lukasz Bator May 3 '12 at 4:46
I didn't meant any restricted port , isn't it that obvious . However, I still apologize for the confusion – Satya May 3 '12 at 5:03

You can change the port they work on, by default the its port 80, you can for example set the WAMP to port 8080 and then use to access WAMP: http://localhost:8080 and to access APPServ : http://localhost

They will not work at the same default port 80 at the same time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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