From 0491ab6e63ee4b764b415ced4bf44feb796cc161 Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Wed, 8 Dec 2004 15:36:10 +0000 Subject: [PATCH] php5 automatically fills [PHP_AUTH_XX] on IIS git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@174286 c90b9560-bf6c-de11-be94-00142212c4b1 --- features/http-auth.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/features/http-auth.xml b/features/http-auth.xml index 859b6358bd..561d4b6fce 100644 --- a/features/http-auth.xml +++ b/features/http-auth.xml @@ -1,5 +1,5 @@ - + HTTP authentication with PHP @@ -163,11 +163,11 @@ should be left unchecked. - Another limitation is if you're using the IIS module (ISAPI), you may not - use the PHP_AUTH_* variables but instead, the variable - HTTP_AUTHORIZATION is available. For example, consider - the following code: list($user, $pw) = explode(':', - base64_decode(substr($_SERVER['HTTP_AUTHORIZATION'], 6))); + Another limitation is if you're using the IIS module (ISAPI) and PHP 4, you + may not use the PHP_AUTH_* variables but instead, the + variable HTTP_AUTHORIZATION is available. For example, + consider the following code: list($user, $pw) = explode(':', + base64_decode(substr($_SERVER['HTTP_AUTHORIZATION'], 6))); IIS Note: