1

I can't start WAMP 2.5 and XAMPP 7 but I can start WAMP 2.2 so its not port 80 issue ( I have listed all programs with netstat in cmd ). I have run httpd.exe in cmd but it didn't give me useful information on cmd ( nothing ).

Thanks for the answer

Mideel
  • 17
  • 6
  • Make sure you start the httpd (almost) as the service would would via `bin\httpd.exe -f path\to\httpd.conf`. Do you get errors then? Is there something in the windows event log regarding the httpd? – VolkerK Jan 23 '16 at 10:10
  • Any error messages ? Otherwise we can only guess – Marged Jan 23 '16 at 10:18
  • Nope, no error messages showed on cmd http://postimg.org/image/l6xh9hl2f/ – Mideel Jan 23 '16 at 11:41
  • Not sure how to use event log, but here's the list of events right after the error http://postimg.org/image/xhkk4wp9l/ – Mideel Jan 23 '16 at 11:45
  • The more interesting information is in the detail view below the part in the screenshot. The errors regarding the service control manager look interesting, though actual errors of the httpd should be logged with the source "httpd". – VolkerK Jan 23 '16 at 12:20
  • Here it is http://postimg.org/image/u7ezjsn3h/ , by the way I just invoked that error again but nothing was added to the list there. – Mideel Jan 23 '16 at 13:19

1 Answers1

3

Change your port and try once

Edit your httpd.conf in XAMPP

Change this to

#Listen 12.34.56.78:80 
Listen 80

this

#Listen 12.34.56.78:80 
Listen 85

Then access your localhost useing

localhost:85/

xampp


If its same open cmd and type netstat -nab and check whats showing with port 80

Abdulla Nilam
  • 36,589
  • 17
  • 64
  • 85