Using IIS and Wamp server in same system

Asked By 0 points N/A Posted on -
qa-featured

Can I use “IIS 7.5 Express” for ASP coding and “Wamp Server” for PHP coding in the same system?

SHARE
Answered By 0 points N/A #195369

Using IIS and Wamp server in same system

qa-featured

Thanks for your question. I'll try to my better solution.

It is possible to install both IIS and wamp server in same system but problem is that both use same port. You can solve this problem in two way.
 
First is, when you will use IIS then you should be service stop of wamp server and you should be service stop of IIS when would use wamp server. In this process you can use one server (IIS or wamp) at a time.
 
Secondly, If you want to run two server (IIS and wamp) at a time, open "httpd.conf" files of wamp server then change 'Listen 80' to 'Listen 8080'. Now open your browser and type "http://localhost" for IIS and type "http://localhost:8080" for wamp.

Related Questions