Page 1 of 1

After install : localhost=>http://www.iis.net/

PostPosted: 04. May 2014 18:02
by Django29
hello

After a first install of Xamp (to work on Joomla), I have the Xamp control panel V 3.2.1., but :
- Apache doesn't want to start
- when I go to localhost, I get a link to http://www.iis.net/

So, I wonder what is this IIS used for on my laptop, and (how) can I uninstall it.

Re: After install : localhost=>http://www.iis.net/

PostPosted: 17. May 2014 17:36
by rickthomas
By default you have Windows IIS Server starting on boot. You need to turn it off.
Goto your control panel, then choose Internet Information Services (IIS) Manager. Once you open that on the right hand side you can STOP the server.
You can then goto your xampp control panel and start Apache.

If you want to disable IIS service manager at startup look at this url

http://www.webune.com/forums/how-to-disable-windows-iis-at-startup.html

Re: After install : localhost=>http://www.iis.net/

PostPosted: 17. May 2014 18:08
by Django29
Thanks for replying, but as I could not make Xamp working, I tried Wamp, and as I could not make Wamp working, I tried EasyPhp.

Then as I could not ....

Finally, I was not able to make my demonstration this morning, during my association meeting.

In Easyphp, after I changed the port 80 =>8080 in binaries/conf_files/httpd.conf, it looked like it was working, but PhpMyadm refuses to save the DB I create.

But one day, maybe ...

Re: After install : localhost=>http://www.iis.net/

PostPosted: 19. May 2014 12:19
by Kamil
Django29 wrote:Thanks for replying, but as I could not make Xamp working, I tried Wamp, and as I could not make Wamp working, I tried EasyPhp.

Then as I could not ....

Finally, I was not able to make my demonstration this morning, during my association meeting.

In Easyphp, after I changed the port 80 =>8080 in binaries/conf_files/httpd.conf, it looked like it was working, but PhpMyadm refuses to save the DB I create.

But one day, maybe ...


Classic situation on windows machine. IIS takes port 80 and what next.

First of all check what you have on system and on what ports.
In console try netstat -ano this will give you all used ports
then you can figure out what on 80 etc by checking the PID tasklist /fi "pid eq 444"

Most important ports for you are:
80 - default www port
3306 - classic mysql port

my conslusion is you have finally brought to live easyphp on port 8080 but phpmyadmin tries to contact a database which is on port 3306 but there is different database, or no database. Check on what port your easyphp database listens.

I hope that this brought some light to topic :)