Categories:
Administration (10)
Adware Spyware (7)
Apache (10)
Bluetooth (125)
DOS Commands (1)
Edge (28)
General (2)
Internet Explorer (217)
Media Center (12)
Media Player (11)
Mozilla Firefox (18)
PHP (15)
Programming (8)
Security (4)
Silverlight (15)
Tips (17)
Tools (218)
Tutorials (5)
Windows 10 (166)
Windows 7 (636)
Windows 8 (1091)
Windows Phone (33)
Windows Server 2008 (165)
Windows Server 2012 (84)
Windows Server 2016 (23)
Windows Vista (52)
Collections:
Other Resources:
Getting Errors When Starting Apache to Load PHP Module
Why am I getting errors when starting Apache server to load PHP as a module with php5apache2.dll?
✍: FYIcenter
httpd.exe: Syntax error on line 116 of C:/Program Files /Apache Software Foundation/Apache2.2/conf/httpd.conf: Cannot load C:/Program Files/php-5.2.0-Win32 /php5apache2.dll into server: The specified module could not be found.
This tutorial explains why and helps you to resolve the issue.
1. Go to the PHP installation directory: C:/Program Files/php-5.2.0-Win32. You will see two files:
11/02/2006 12:41 PM 36,925 php5apache2.dll 11/02/2006 12:41 PM 36,927 php5apache2_2.dll
2. PHP installation guide tells you to use php5apache2.dll. But that's wrong. php5apache2.dll is not compatible with Apache 2.2 on Microsoft Windows. You should use php5apache2_2.dll.
3. Open Apache server configuration file again and change the LoadModule statement as:
LoadModule php5_module "C:/Program Files/php-5.2.0-Win32/php5apache2_2.dll" PHPIniDir "C:/Program Files/php-5.2.0-Win32" ... <IfModule mime_module> ... AddType application/x-httpd-php .php </IfModule>
4. Start Apache server again. You will no problem now.
2016-07-10, 18987👍, 3💬
Popular Posts:
Where are registry keys located for Installed Programs and programs on my Window 7 system? When a so...
How to add comments on slides? I am reviewing someone else's presentation and I want to add some com...
How to remove tfswctrl.exe from the startup application list to gain performance and reduce security...
What is the startup program "CyberLink MediaLibray Service - CLMLSvc_P2G8.exe" on my Windows 8 compu...
I have a program called (Default) with no description as to what it is for. Listed in the administra...