Forum Moderators: phranque
LoadModule fastcgi_module modules/mod_fastcgi.so
<IfModule mod_fastcgi.c>
ScriptAlias /www/ "C:/Server/Apache24/www/"
FastCgiConfig -initial-env PATH -autoUpdate -idle-timeout 120 -killInterval 3600 -maxClassProcesses 10 -maxProcesses 10 -startDelay 2
FastCgiServer "C:/Server/Apache24/www/php-cgi.exe" -initial-env PATH -processes 1
AddType application/x-httpd-php .php
<Files ~ "\.(php)$">
Options FollowSymLinks ExecCGI
AddHandler php-fastcgi .fcgi .php
</Files>
<Location /www/>
Options ExecCGI
SetHandler php-fastcgi
</Location>
Action php-fastcgi "/www/php-cgi.exe"
</IfModule> throws a bunch of failed requests
Also, another less important issue that php can't load postgresql extensions even though php_pgsql and php_pdo_pgsql are included in php.ini.
The same php.ini works fine with mod_php and loads pgsql extensions just fine.