]> granicus.if.org Git - php/commitdiff
Remove CHANGES from sapi/cgi
authorPeter Kokot <peterkokot@gmail.com>
Fri, 13 Oct 2017 12:01:00 +0000 (14:01 +0200)
committerJoe Watkins <krakjoe@php.net>
Thu, 19 Oct 2017 10:51:09 +0000 (11:51 +0100)
All these changes are noted in the PHP manual instead that have been
removed.

sapi/cgi/CHANGES [deleted file]

diff --git a/sapi/cgi/CHANGES b/sapi/cgi/CHANGES
deleted file mode 100755 (executable)
index b7cf41c..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-In PHP5.3 all additional configure options (except --enable-cgi) are removed:
-
-  --enable-fastcgi          CGI: If this is enabled, the cgi module will
-                            be built with support for fastcgi also
-
-                            Now fastcgi is always enabled
-
-  --disable-path-info-check CGI: If this is disabled, paths such as
-                            /info.php/test?a=b will fail to work
-
-                            Now it is enabled by default, but can be disabled
-                            with ini directive "cgi.fix_pathinfo=0"
-
-  --enable-force-cgi-redirect
-                            CGI: Enable the security check for internal server
-                            redirects.  You should use this if you are
-                            running the CGI version with Apache
-                                                       
-                            Now it is enabled by default, but can be disabled
-                            with ini directive "cgi.force_redirect=0"
-
-  --enable-discard-path     CGI: If this is enabled, the PHP CGI binary
-                            can safely be placed outside of the
-                            web tree and people will not be able
-                            to circumvent .htaccess security
-
-                            This option had effect only with
-                            --disable-path-info-check or "cgi.fix_pathinfo=0".
-                            Seems it needs only for CGI configuration that
-                            require each script start from "#! /usr/bin/php".
-
-                            Now it is disabled by default, but can be enabled
-                            with ini directive "cgi.discard_path=1".