mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
30386e2a55
commit
46c84a93ff
1 changed files with 38 additions and 0 deletions
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in a new issue