From 6cdf0cb2f107decd6b4ae636b3e34ce0c20649e4 Mon Sep 17 00:00:00 2001
From: Philip Olson
Date: Sat, 13 Jul 2002 21:37:03 +0000
Subject: [PATCH] * Made all examples and text work with register_globals = off
(closes bug #18328) * Minor textual changes, and added links to other manual
sections * A little whitespace fixing
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@88596 c90b9560-bf6c-de11-be94-00142212c4b1
---
features/http-auth.xml | 88 +++++++++++++++++++++++++++---------------
1 file changed, 57 insertions(+), 31 deletions(-)
diff --git a/features/http-auth.xml b/features/http-auth.xml
index fe4d1355c5..4e11b46aa7 100644
--- a/features/http-auth.xml
+++ b/features/http-auth.xml
@@ -1,5 +1,5 @@
-
+
HTTP authentication with PHP
@@ -10,25 +10,41 @@
header function to send an "Authentication Required"
message to the client browser causing it to pop up a Username/Password
input window. Once the user has filled in a username and a password,
- the URL containing the PHP script will be called again with the variables,
- $PHP_AUTH_USER, $PHP_AUTH_PW and $PHP_AUTH_TYPE set to the user
- name, password and authentication type respectively. Only "Basic"
- authentication is supported at this point. See the header
- function for more information.
-
+ the URL containing the PHP script will be called again with the
+ predefined variables
+ PHP_AUTH_USER, PHP_AUTH_PW,
+ and PHP_AUTH_TYPE set to the user name, password and
+ authentication type respectively. These predefined variables are found
+ in the $_SERVER and
+ $HTTP_SERVER_VARS arrays. Only "Basic" authentication
+ is supported. See the header function for more
+ information.
+
+
+
+ PHP Version Note
+
+ Autoglobals,
+ such as $_SERVER, became
+ available in PHP version 4.1.0.
+ $HTTP_SERVER_VARS has been available since PHP 3.
+
+
+
An example script fragment which would force client authentication
- on a page would be the following:
-
+ on a page is as follows:
+
+ HTTP Authentication example
Hello {$_SERVER['PHP_AUTH_USER']}.
";
@@ -37,38 +53,45 @@
?>
]]>
-
+
+
- Note
+ Compatibility Note
Please be careful when coding the HTTP header lines. In order to guarantee maximum
compatibility with all clients, the keyword "Basic" should be written with an
uppercase "B", the realm string must be enclosed in double (not single) quotes,
- and exactly one space should precede the "401" code in the "HTTP/1.0 401" header line.
+ and exactly one space should precede the 401 code in the
+ HTTP/1.0 401 header line.
- Instead of simply printing out the $PHP_AUTH_USER and
- $PHP_AUTH_PW, you would probably want to check the username and
- password for validity. Perhaps by sending a query to a database,
- or by looking up the user in a dbm file.
+ Instead of simply printing out PHP_AUTH_USER
+ and PHP_AUTH_PW, as done in the above example,
+ you may want to check the username and password for validity.
+ Perhaps by sending a query to a database, or by looking up the
+ user in a dbm file.
+
Watch out for buggy Internet Explorer browsers out there. They
seem very picky about the order of the headers. Sending the
WWW-Authenticate header before the
HTTP/1.0 401 header seems to do the trick
- for now.
+ for now.
+
In order to prevent someone from writing a script which reveals
the password for a page that was authenticated through a
traditional external mechanism, the PHP_AUTH variables will not be
set if external authentication is enabled for that particular
- page. In this case, the $REMOTE_USER variable can be used to
- identify the externally-authenticated user.
+ page. In this case, REMOTE_USER can be used
+ to identify the externally-authenticated user. So,
+ $_SERVER['REMOTE_USER'].
+
Configuration Note
@@ -84,27 +107,29 @@
Note, however, that the above does not prevent someone who
controls a non-authenticated URL from stealing passwords from
- authenticated URLs on the same server.
+ authenticated URLs on the same server.
+
Both Netscape Navigator and Internet Explorer will clear the local browser
window's authentication cache for the realm upon receiving a
server response of 401. This can effectively "log out" a user,
forcing them to re-enter their username and password. Some people
- use this to "time out" logins, or provide a "log-out" button.
-
+ use this to "time out" logins, or provide a "log-out" button.
+
+ HTTP Authentication example forcing a new name/password
]]>
-
-
+
+
+
This behavior is not required by the HTTP Basic authentication
standard, so you should never depend on this. Testing with Lynx
@@ -136,7 +162,7 @@
- If safe mode is enabled the
+ If safe mode is enabled, the
uid of the script is added to the realm part of
the WWW-Authenticate header.