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
This commit is contained in:
Philip Olson 2003-01-20 07:12:46 +00:00
parent afdf068086
commit 67741508ab

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<sect1 id="install.iis">
<title>Servers-IIS/PWS</title>
<para>
@ -9,6 +9,29 @@
<link linkend="install.iis.pws4">PWS 4 or newer</link> and
<link linkend="install.iis.iis4">IIS 4 or newer</link> versions.
</para>
<note>
<title>Important for CGI users</title>
<para>
When running PHP as CGI with IIS, PWS, OmniHTTPD or Xitami,
you MUST set the <link linkend="ini.cgi.force-redirect">
cgi.force_redirect</link> directive to <literal>0</literal>.
It defaults to <literal>1</literal> so be sure the directive
isn't commented out (with a <literal>;</literal>).
</para>
<para>
It's important that you're 100% sure that &php.ini; is
being read by PHP. To test this, make a call to
<function>phpinfo</function> and near the top will be a
listing called <literal>Configuration File (php.ini)</literal>.
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.
</para>
</note>
<sect2 id="install.iis.iis3">
<title>Windows and PWS/IIS 3</title>