Configuring Apache 2.2.x with PHP 5.xApache sideIf you are using PHP version earlier than 5.2.0, you need to obtain a proper PHP Apache Handler for Apache 2.2.x, because the file "php5apache2.dll" is for Apache 2.0.x. PHP 5.2.0 provides php5apache2_2.dll and php5apache2_2_filter.dll to support Apache 2.2.x. Add following lines in conf/httpd.conf, replace PHP_HOME with your directory.
LoadModule php5_module "PHP_HOME/php5apache2_2.dll"
AddType application/x-httpd-php .php
PHPIniDir "PHP_HOME"
PHP side
|