I have a Windows Server 2003 and asp.net website running on localhost. I have to install php and mysql, but php installation doesn't work for whatever reason. I was wondering if I could install package such as xampp on windows server to save time and hassle installing in manually (I could not find a tutorial for this). I was wondering though, if it is safe, i.e. what will happen if I go to http://localhost/ - will I get the php or asp website? In general, is it safe to install xampp on windows server 2003? All advice greatly appreciated
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
|
|
As asp.net website is already running, as you told, IIS is also already installed. If you want to run php files, you could install xampp or other equivalent AMP installation (i.e. EasyPHP) but you have to consider some config stuff to do. In your example, http://localhost will serve a asp page, because IIS was the first to be installed, so it takes the default http port 80. On the other hand, you have to change your apache config in order to serve another free port (i.e. 8080). In this way to access php website you'll go to localhost:8080. |
|||
|
|