Apache cannot start LoadModule php5_module modules/php5apache2.dll problem
The main issue is version!! A bit uncomfortable!!
Apache Cannot start
Add the following two lines, Apache will not start the problem
LoadModule Php5_module Modules/php5apache2.dll
AddType application/x-httpd-php. php
This question I tested for a long time, finally found that the problem is due to the different versions of Apache, LoadModule php5_module modules/ Php5apache2.dll the configuration of this code is slightly different, the error is in this code, should be
LoadModule Php5_module Modules/php5apache2.dll in the Php5apache2.dll modified into Php5apache2_2.dll, Because you are using the Apache version 2.2, so change, after the correct configuration is as follows: If your PHP directory is c:\php, if the following is the correct configuration
LoadModule php5_module "C:/php/php5apache2_2.dll"
AddType application/x-httpd-php. php
You can control my configuration and be able to boot successfully.
LoadModule php5_module "F:/serv/php/php5apache2_2.dll"
AddType application/x-httpd-php. php
Apache cannot start LoadModule php5_module modules/ph