From 67741508ab9dd4fed5c69d8e90c6eb95de105145 Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Mon, 20 Jan 2003 07:12:46 +0000 Subject: [PATCH] Mention the importance of cgi.force_redirect = 0. Also mention the importance of having your php.ini read by PHP :) This closes bug #16111 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@112772 c90b9560-bf6c-de11-be94-00142212c4b1 --- chapters/install.iis.xml | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/chapters/install.iis.xml b/chapters/install.iis.xml index a9c707bfde..9a5e9d0f1f 100644 --- a/chapters/install.iis.xml +++ b/chapters/install.iis.xml @@ -1,5 +1,5 @@ - + Servers-IIS/PWS @@ -9,6 +9,29 @@ PWS 4 or newer and IIS 4 or newer versions. + + + Important for CGI users + + When running PHP as CGI with IIS, PWS, OmniHTTPD or Xitami, + you MUST set the + cgi.force_redirect directive to 0. + It defaults to 1 so be sure the directive + isn't commented out (with a ;). + + + It's important that you're 100% sure that &php.ini; is + being read by PHP. To test this, make a call to + phpinfo and near the top will be a + listing called Configuration File (php.ini). + This will tell you where PHP is looking for &php.ini; and + whether or not it's being read. If just a PATH exists + than it's not being read and you should put your &php.ini; + there. If &php.ini; is included with the PATH than it is + being read. + + + Windows and PWS/IIS 3