php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #7677 WWW-Authenticate Problem
Submitted: 2000-11-07 12:27 UTC Modified: 2000-11-07 18:00 UTC
From: oleg at vsi dot ru Assigned:
Status: Closed Package: Apache related
PHP Version: 4.0.3pl1 OS: FreeBSD 4.0
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
28 - 27 = ?
Subscribe to this entry?

 
 [2000-11-07 12:27 UTC] oleg at vsi dot ru
I have Apache 1.3.9 + PHP 4.0.3pl1 compiled as Apache module. When I have access to page with following script from Netscape 4/Linux, this script works correctly. But from IE5, script always authenticate fail. Why ?

<?
   if(!isset($PHP_AUTH_USER)) {
     Header("WWW-Authenticate: Basic realm=\"TEST\"");
     Header("HTTP/1.0 401 Unauthorized");
     echo "Authenticate required\n";
     exit;
   } else {
     echo "User: $PHP_AUTH_USER, Pass: $PHP_AUTH_PW.<P>";
   }
?>

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2000-11-07 18:00 UTC] rasmus@php.net
Send the Status code before the WWW-authenticate header.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 14:01:31 2024 UTC