php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #32925 HTTP Authentication is not carried through upon redirects.
Submitted: 2005-05-03 13:21 UTC Modified: 2005-07-22 01:00 UTC
From: wb at pro-net dot co dot uk Assigned:
Status: No Feedback Package: HTTP related
PHP Version: 5.0.4 OS: FreeBSD
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: wb at pro-net dot co dot uk
New email:
PHP Version: OS:

 

 [2005-05-03 13:21 UTC] wb at pro-net dot co dot uk
Description:
------------
When using fopen() it seems that authentication details are not passed through upon a redirect and you will get a HTTP/1.1 401 Authorization Required.

The server i am trying has a virtual host of the following...

<VirtualHost 0.0.0.0:80>
    ServerName some.redirect.com
    RewriteEngine on
    RewriteRule ^/(.*) http://www.redirect.com/redirect/$1 [R,L]
</VirtualHost>

Which will just redirect the request to another location where authentication is needed.


Reproduce code:
---------------
<?php
$fp = fopen('http://user:pass@some.redirect.com/', 'rb');
print_r($fp);
?>


Expected result:
----------------
Resource id #2


Actual result:
--------------
PHP Warning:  fopen(): HTTP request failed! HTTP/1.1 401 Authorization Required

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-07-14 08:58 UTC] sniper@php.net
Please try using this CVS snapshot:

  http://snaps.php.net/php5-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5-win32-latest.zip


 [2005-07-22 01:00 UTC] php-bugs at lists dot php dot net
No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 18:01:29 2024 UTC