php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #56923 weird behaviour involving http auth
Submitted: 2006-03-28 03:57 UTC Modified: 2006-03-28 04:13 UTC
From: judas dot iscariote at gmail dot com Assigned:
Status: Not a bug Package: APC (PECL)
PHP Version: 5_1 CVS-2006-03-28 OS: Linux amd64
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 this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: judas dot iscariote at gmail dot com
New email:
PHP Version: OS:

 

 [2006-03-28 03:57 UTC] judas dot iscariote at gmail dot com
Description:
------------
Im using latest APC code from the CVS, and Im experimenting and strange behaviour, that sadly I don't know if you will be able to reproduce. :-)

this has been found only due casuality.

I opened apc.php in a firefox tab, and logged in, to look how my cache is working.

then In a second tab, I have opened a test installation of the very nice flux-cms.

to my surprise, it started asking for username and password,for repeated times ( and flux-cms doesn't use HTTP auth at all)
after a few tries, with bad, blank or just hitting cancel at the prompt,things becomes totally normal.

both apc.php and flux-cms are in the same host/virtual host.

PHP without apc loaded doesn't exbiit this weird behaviour..

seems APC is doing some strange thing with HTTP auth...
 







Reproduce code:
---------------
none currently

Expected result:
----------------
not asking for HTTP auth in places without it.

Actual result:
--------------
asking for username and password in places which doesn't have to.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-03-28 04:13 UTC] rasmus@php.net
That's extremely unlikely.  Outside of the apc.php script, there is absolutely nothing in APC that has anything to do with Auth stuff.  And the apc.php script is just a PHP script sending:

  Header("WWW-Authenticate: Basic realm=\"APC Login\"");
  Header("HTTP/1.0 401 Unauthorized");

Now, if you have some other code running on the same vhost, that code is going to see the Authentication headers sent by your browser.  My only thought is the presence of these headers is confusing your cms.  There is nothing here I can fix.  Either fix your cms, run apc.php in another vhost, or edit apc.php to remove those Auth headers.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 11:01:28 2024 UTC