-1

I want to install latest PHP 7 version so I was installing it in my vista homepremium 32 bit. But it is giving Apache error. My Apache is not working. Can someone please help or recommend me another version for PHP 7 so as I can install Laravel.

Michał Turczyn
  • 32,028
  • 14
  • 47
  • 69

1 Answers1

0

If you have an issue in the httpd.conf or any files included by it there are a couple of ways to find out what the problem is

First look at your Windows Event Viewer. Click on the Windows link in the left and menu and then Applications. Look for messages from Apache with the red error icon.

Secondly, open a command window, then CD into \wamp\bin\apache\apache2.x.y\bin, replace x,y with your actual version. Now you can run this command to get Apache(httpd) to vaidate the httpd.conf file.

httpd.exe -t

This should give errors with line numbers related to the http.conf file. It stops on the first error, so you will have to keep running it and fixing the error and then run it again until it gives the all OK message.

Original answer: RiggsFolly

Joppe De Cuyper
  • 394
  • 1
  • 6
  • 17