| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
  [2002-01-25 04:18 UTC] schiessler at gisquadrat dot com
 maybe this issue was discussed in an former topic? Nothing found sophisticating. 
Using mantis 0.16.1 with php 4.1.1 as module in apache on an w2k server. 
Using IE6.0 (6.0.2600.0000)cannot login -> not cookie appears. although "accept cookies" is activated 
Using IE5.5 @ w2k or NS6.1@nt it works fine. 
some testpages I have copied from this and other webpage show the same result. Like 
<? 
setcookie("test","testing"); 
phpinfo(); 
?> 
shows for IE6.0 (@nt or w2k) (after reloading the page several times) 
Set-Cookie: test=testing for http response header 
but nothing elsewhere 
for NS6.1 (@nt) (after reload 1 time) 
the proper value appears in: 
- ApacheEnvironment HTTP_COOKIE 
- Response & RequestHeader 
- php variables _COOKIE["test"] & _SERVER["HTTP_COOKIE"] 
So Apache, PHP, IE55, NS61 seems to work correct. But IE 60 does not... 
The really wired is, that only one browser (IE60) in our group is able to have cookies. Another IIS/ASP-application 
in out LAN shows the same behavior. So maybe it's not a sort of PHP bug. More a communication problem between PHP and IE6.0. 
Nothing found at Microsoft site!
Does anybody know more about this issue? 
Please reply to schiessler@gisquadrat.com 
Thanks a lot. 
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 14:00:01 2025 UTC | 
I had the same exact problem. I don't know what the exact problem was, but I went in under the cookies folder and deleted all of the current cookies for my domain (127.0.0.1) and made sure all the PHP sessions were deleted (not needed really, as they would eventually get GC'd anyway). I went in, reset the cookie, and it worked fine. I also changed the code from: $foo = 'bar'; session_register('foo'); $foo = 'some new bar'; to: $foo = 'bar'; session_register('foo); $HTTP_SESSION_VARS['foo'] = 'some new bar'; I am not sure exactly which of these "fixed" the problem, but it no longer shows up for me. [[ Win2k Server SP 2, PHP 4.1.1, Apache 1.3.22, IE 6.0 ]]