I am trying to set up php 5.5.10 with apache(httpd 2.4.7) on Windows 8 64 bit system
Added following lines to httpd.conf
LoadModule php5_module "c:/apps/php/php5apache2_4.dll"
PHPIniDir 'C:/apps/php'
AddHandler application/x-httpd-php .php
I get the following error. httpd.exe: Syntax error on line 179 of C:/apps/Apache24/conf/httpd.conf: Cannot load c:/apps/php/php5apache2_4.dll into server: The specified module could not e found.
Without php modules config apache starts fine. But when I add php module I get this error. I use thread safe php and php5apache2_4.dll is actually present in the specified location.
I also add C:/apps/php to my windows path as suggest in a thread. I also used php.ini-production and changed name to php.ini I did not make any further changes to php.ini
Any pointers on how to resolve this issue?