diff --git a/appendices/configure/servers.xml b/appendices/configure/servers.xml
index 236d4125cd..3e4f2f646e 100644
--- a/appendices/configure/servers.xml
+++ b/appendices/configure/servers.xml
@@ -227,6 +227,10 @@
Disable building CGI version of PHP. Available with PHP 4.3.0.
+
+ As of PHP 5.3.0 this argument enables FastCGI which previously
+ had to be enabled using --enable-fastcgi.
+
@@ -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.
+
+ As of PHP 5.3.0 this argument is enabled by default and no longer
+ exists. To disable this, the
+ cgi.force_redirect ini directive
+ should be set to 0.
+
@@ -252,6 +262,12 @@
the web tree and people will not be able to circumvent &htaccess;
security.
+
+ As of PHP 5.3.0 this argument is disabled by default and no longer
+ exists. To enable this feature the
+ cgi.discard_path ini directive
+ must be set to 1.
+
@@ -267,6 +283,24 @@
+
+
+
+
+
+
+ Disables path info checks, disabling paths such as
+ /file.php/test?a=b.
+
+
+ As of PHP 5.3.0 this argument is enabled by default and no longer
+ exists. To disable this, the
+ cgi.fix_pathinfo ini directive
+ should be set to 0.
+
+
+
+
@@ -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
+
+ As of PHP 5.3.0 this argument no longer exists and is enabled by
+ --enable-cgi instead.
+