Fixed bug #51419 (5.3 CGI SAPI changes not documented)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@304643 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Kalle Sommer Nielsen 2010-10-23 07:37:59 +00:00
parent 30386e2a55
commit 46c84a93ff

View file

@ -227,6 +227,10 @@
<para>
Disable building CGI version of PHP. Available with PHP 4.3.0.
</para>
<para>
As of PHP 5.3.0 this argument enables FastCGI which previously
had to be enabled using <literal>--enable-fastcgi</literal>.
</para>
</listitem>
</varlistentry>
@ -239,6 +243,12 @@
Enable the security check for internal server redirects. You should use
this if you are running the CGI version with Apache.
</para>
<para>
As of PHP 5.3.0 this argument is enabled by default and no longer
exists. To disable this, the
<link linkend="ini.cgi.force-redirect">cgi.force_redirect</link> ini directive
should be set to <literal>0</literal>.
</para>
</listitem>
</varlistentry>
@ -252,6 +262,12 @@
the web tree and people will not be able to circumvent &htaccess;
security.
</para>
<para>
As of PHP 5.3.0 this argument is disabled by default and no longer
exists. To enable this feature the
<link linkend="ini.cgi.discard-path">cgi.discard_path</link> ini directive
must be set to <literal>1</literal>.
</para>
</listitem>
</varlistentry>
@ -267,6 +283,24 @@
</listitem>
</varlistentry>
<varlistentry xml:id="configure.disable-path-info-check">
<term>
<option role="configure">--disable-path-info-check</option>
</term>
<listitem>
<para>
Disables path info checks, disabling paths such as
<literal>/file.php/test?a=b</literal>.
</para>
<para>
As of PHP 5.3.0 this argument is enabled by default and no longer
exists. To disable this, the
<link linkend="ini.cgi.fix-pathinfo">cgi.fix_pathinfo</link> ini directive
should be set to <literal>0</literal>.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="configure.enable-fastcgi">
<term>
<option role="configure">--enable-fastcgi</option>
@ -276,6 +310,10 @@
If this is enabled, the CGI module will be built with support for FastCGI
also. Available since PHP 4.3.0
</para>
<para>
As of PHP 5.3.0 this argument no longer exists and is enabled by
<literal>--enable-cgi</literal> instead.
</para>
</listitem>
</varlistentry>