Stucked at bottleneck (installation)

A

Anonymous

Guest
Edit your PHP.INI file in the Windows directory:
The semicolon in front of cgi.force_redirect=0 must be missing! This 'uncomments' the line and enables the feature, which in this case sets cgi.force_redirect to false.

Something like this -->

Code:
; cgi.force_redirect = 1
cgi.force_redirect=0

Byes
;)
 
; cgi.force_redirect is necessary to provide security running PHP as a CGI under
; most web servers. Left undefined, PHP turns this on by default.
So you've got it by default now, nothing's changed yet.

What you should do is left it like this -->
Code:
; cgi.force_redirect = 1
cgi.force_redirect = 0
As you see I add a line setting it to false.
P.D. Try to stop Apache service while changing things.

Try it.
I hope it'll work fine, otherwise you'll have to download the CGI module for Apache at http://www.php.net/downloads.php
 
I'm propose install PHP Like module (in Winows or UNIX)
cause it's faster and not have more problem....
 
Back
Top