Forum Moderators: coopster
I am trying to configure php as CGI on apache 2.2. Following are entries:
[codes]
<Directory "c:/php/">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
ScriptAlias /php/ "c:/php/"
Action application/x-httpd-php "/php-cgi.exe"
Addhandler php5-script .php action php5-script /cgi-bin/php
[/codes]
and when i try to access:
[localhost...]
it's asking to save test.php.
in php.ini I have:
[codes]cgi.force_redirect = 0[/codes]
Thanks