I need some help setting up fastCGI on my machine. I will be running it with PHP5.1, Apache2 and win32
The section of my httpd.conf file that refers to php is as follows -
<Directory "C:/php">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
ScriptAlias /php/ "c:/php/"
AddType application/x-httpd-php .php .php5
Action application/x-httpd-php "/php/php-cgi.exe"
SetEnv PHPRC "C:/php"
I then have this for FastCGI below it
LoadModule fastcgi_module modules/mod_fastcgi-2.4.2-AP20.dll (loads ok)
FastCgiServer /export/httpd/cgi-bin/php
AddHandler php-fastcgi .php
<Location /cgi-bin/php>
SetHandler fastcgi-script
</Location>
Action php-fastcgi /cgi-bin/php
DirectoryIndex index.html index.shtml index.cgi index.php
AddType application/x-httpd-php .php
I grabbed this straight off the fastcgi website, but Im pretty sure Im way off!
Any help would be appreciated