nlopess Wed Dec 8 10:36:10 2004 EDT
Modified files:
/phpdoc/en/features http-auth.xml
Log:
php5 automatically fills [PHP_AUTH_XX] on IIS
http://cvs.php.net/diff.php/phpdoc/en/features/http-auth.xml?r1=1.40&r2=1.41&ty=u
Index: phpdoc/en/features/http-auth.xml
diff -u phpdoc/en/features/http-auth.xml:1.40
phpdoc/en/features/http-auth.xml:1.41
--- phpdoc/en/features/http-auth.xml:1.40 Mon May 24 17:20:47 2004
+++ phpdoc/en/features/http-auth.xml Wed Dec 8 10:36:10 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.40 $ -->
+<!-- $Revision: 1.41 $ -->
<chapter id="features.http-auth">
<title>HTTP authentication with PHP</title>
@@ -163,11 +163,11 @@
should be left unchecked.
</simpara>
<simpara>
- Another limitation is if you're using the IIS module (ISAPI), you may not
- use the <literal>PHP_AUTH_*</literal> variables but instead, the variable
- <literal>HTTP_AUTHORIZATION</literal> is available. For example, consider
- the following code: <literal>list($user, $pw) = explode(':',
- base64_decode(substr($_SERVER['HTTP_AUTHORIZATION'], 6)));</literal>
+ Another limitation is if you're using the IIS module (ISAPI) and PHP 4, you
+ may not use the <literal>PHP_AUTH_*</literal> variables but instead, the
+ variable <literal>HTTP_AUTHORIZATION</literal> is available. For example,
+ consider the following code: <literal>list($user, $pw) = explode(':',
+ base64_decode(substr($_SERVER['HTTP_AUTHORIZATION'], 6)));</literal>
</simpara>
<note>
<title>IIS Note:</title>