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
Have you experienced this issue?
Rate the importance of this bug to you:

 [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

Add a Patch

Pull Requests

Add a Pull Request

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 Apr 20 01:01:28 2024 UTC