Page 1 of 1

Post-XAMPP install problems

PostPosted: 03. December 2004 23:35
by pBratch
"xampp basic start" starts the service, then opens up IE, I click on english and I get a page not found.

I can ping the localhost through command prompt, but I get nothing through the browser.

Anyone help?

Re: Post-XAMPP install problems

PostPosted: 04. December 2004 12:32
by MacDaddy
pBratch wrote:"xampp basic start" starts the service, then opens up IE, I click on english and I get a page not found.

I can ping the localhost through command prompt, but I get nothing through the browser.

Anyone help?


did you change or delete any folders in the "htdocs" folder ?
try a reinstall

Re: Post-XAMPP install problems

PostPosted: 04. December 2004 17:27
by pBratch
covered that...same thing

think i might need to reinstall XP

PostPosted: 04. December 2004 18:21
by Wiedmann
- stop xampp
- open a command prompt
- go to your xampp dir (eg: cd \xampp)
- run "apache_start.bat"
- post the output

"apache_start.bat" output

PostPosted: 07. December 2004 04:54
by pBratch
Diese Eingabeforderung nicht waehrend des Running beenden
Bitte erst bei einem gewollten Shutdown schliessen
Please close this command only for Shutdown
Apache 2 is starting ...
(OS 10048)Only one usage of each socket address (protocol/network address/port)
is normally permitted. : make_sock: could not bind to address 0.0.0.0:443
no listening sockets available, shutting down
Unable to open logs

PostPosted: 07. December 2004 05:52
by Wiedmann
OS 10048)Only one usage of each socket address (protocol/network address/port)
is normally permitted. : make_sock: could not bind to address 0.0.0.0:443

Ohh, there are really many posts here for this error...


Stop the programm that allready use port 443 (eg: IIS, Skype...).

Re: "apache_start.bat" output

PostPosted: 07. December 2004 06:00
by taustin
pBratch wrote:Diese Eingabeforderung nicht waehrend des Running beenden
Bitte erst bei einem gewollten Shutdown schliessen
Please close this command only for Shutdown
Apache 2 is starting ...
(OS 10048)Only one usage of each socket address (protocol/network address/port)
is normally permitted. : make_sock: could not bind to address 0.0.0.0:443
no listening sockets available, shutting down
Unable to open logs


Are you using virtual hosts in an otherwise standard install? If so, you may have a virtual host running on SSL (which is port 443) that is interfering with virtual hosts that are set up with * as the port. Try setting your VirtualHost sections to:

<VirtualHost *:80>

instead of <VirtualHost *> and see if that helps.