ID:               15219
 Updated by:       [EMAIL PROTECTED]
-Summary:          IE 6.0 and Cookies doesn't work
 Reported By:      [EMAIL PROTECTED]
-Status:           Feedback
+Status:           Closed
 Bug Type:         Session related
 Operating System: Win 2000
 PHP Version:      4.1.1
 New Comment:

This error only occurs when IE60,SP2 with Update Q313675 is installed.
With security patch Txxxxx(don't know exact number) it's the same. 

This problem occurs also at our IIS Application. But only if we connect
from Intranet. Connecting via INTERnet this works fine. So I posted
some text to Microsoft :) 
It seems the guys bust up smth in the INTRANET zone settings?!

So this is not a PHP related bug, or an Windows or Apache problem. Is
just an Internet Explorer bug! 
Bill Gates is in Vienna today, just around the corner from me, I will
ask HIM :D

I have closed this bug (if i am allowed to)




Previous Comments:
------------------------------------------------------------------------

[2002-02-03 19:52:28] [EMAIL PROTECTED]

Is this windows specific  problem?
I don't have such problem with my Linux/Apache 1.3.22

Could you try apache 1.3.23 to see if it helps?

------------------------------------------------------------------------

[2002-01-25 23:55:07] [EMAIL PROTECTED]

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 ]]

------------------------------------------------------------------------

[2002-01-25 04:18:41] [EMAIL PROTECTED]

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 [EMAIL PROTECTED] 

Thanks a lot. 



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=15219&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to