Running xampp and IIS concurrently.HOW TO?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
highjo
Forum Contributor
Posts: 118
Joined: Tue Oct 24, 2006 1:07 pm

Running xampp and IIS concurrently.HOW TO?

Post by highjo »

hi!Please i'm facing a problem a hopethat someone met it already.I'm using xampp on my Xp sp2.I've been playing with ASP.NET too and devloppe inVisual Studio 2005.First for ASp.NEt site i use the embedded server of Visual Studio.Now web services are involved and needed IIS.It's wqas installed alright but when I start apache on xampp panel it stops by itself.Is it any tricks to make them work concurrently?
PS:This is serious , i need to get through this because i have a(school) project on C#.NET web service.
User avatar
EverLearning
Forum Contributor
Posts: 282
Joined: Sat Feb 23, 2008 3:49 am
Location: Niš, Serbia

Re: Running xampp and IIS concurrently.HOW TO?

Post by EverLearning »

If you already have web server started that accepts connections on port 80(standard port for HTTP), apache won't start. Look in apache error.log, there should be some useful information.
One solution is to change the port apache listens to to some other port, 800, 8080 etc...
User avatar
highjo
Forum Contributor
Posts: 118
Joined: Tue Oct 24, 2006 1:07 pm

Re: Running xampp and IIS concurrently.HOW TO?

Post by highjo »

hi! thanks for the clues
I did some changes in c:\program files\xampp\apache\conf\httpd.conf on the lines "Listen" and "ServerName".Change it to
Listen 800 and ServerName localhost:800.

Did some changes in c:\program files\xampp\apache\conf\extra\httpd-ssl.conf on the lines "Listen" and "ServerName"
Listen 4499 and ServerName localhost:4499.here don't really know if i should change <VirtualHost _default_:443> to <VirtualHost _default_:4499>.

Did some changes in c:\program files\xampp\apache\conf\extra\httpd-xampp.conf on the lines "AuthRemoteServer" and "AuthRemotePort"
AuthRemoteServer localhost:800 and AuthRemotePort 800.

Again i change the port number for SMTP to 251, POP3 to 1101 and the filezilla to 221
Though i'm done with it but when i click on admin button from the xampp panel it opens the iis localstart.asp and i need to add ":800" to the localhost manually before i open the xampp admin or welcome page.Even when apache is started it's still writting Apache started [port 80], same for the rest of the other component.How to solve it?
how do i update changes especially to make the apache admin button to point to localhost:800

Will really appreciate if someone post answers
Post Reply