Re: [PHP] Session not getting destroyed !

2003-10-17 Thread Marek Kilimajer
Don't you have an old cookie in your IE 5? Try clearing all cookies.

Binay wrote:

Hi all,

My session is not getting destroyed once i close the browser. Problem is only in IE 5 as IE 6+ its getting destroyed. I don't know what is the problem. I looked at the session settings parameters in php.ini file but couldn't figure it out.

I am using php 4.2.3 
and session.cookie_lifetime is set to 0 also.

Please help me out.

Thanks in advance

Binay

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] Session not getting destroyed !

2003-10-17 Thread David Otton
On Fri, 17 Oct 2003 16:46:45 +0530, you wrote:

>Yes its showing 0 only..
>
>Its a weird kind of problem for me ..

Is the browser really being closed? SID caught in a bookmark? Broken cache?

Try starting from bare - delete all IE cookies and run the tests again.

Check the cookie on the client side, to make sure it's really set to expire
on close: http://www.bykeyword.com/pages/detail3/download-3691.html

Sorry I can't offer anything concrete. If the cookie is set to expire, it's
probably a problem with your IE install, rather than PHP.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Session not getting destroyed !

2003-10-17 Thread PHP Webmaster

"Binay" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Yes its showing 0 only..
>
> Its a weird kind of problem for me ..
>
> - Original Message -
> From: "David Otton" <[EMAIL PROTECTED]>
> To: "Binay" <[EMAIL PROTECTED]>
> Cc: <[EMAIL PROTECTED]>
> Sent: Friday, October 17, 2003 4:16 PM
> Subject: Re: [PHP] Session not getting destroyed !
>
>
> > On Fri, 17 Oct 2003 15:58:36 +0530, you wrote:
> >
> > >My session is not getting destroyed once i close the browser. Problem
is
> only in IE 5 as IE 6+ its getting destroyed. I don't know what is the
> problem. I looked at the session settings parameters in php.ini file but
> couldn't figure it out.
> > >
> > >I am using php 4.2.3
> > >and session.cookie_lifetime is set to 0 also.
> >
> > Are you certain cookie_lifetime is set to 0?
> >
> > print_r (session_get_cookie_params ());

Do you have a logout page? Something that uses session_destroy() ?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Session not getting destroyed !

2003-10-17 Thread Binay
Yes its showing 0 only..

Its a weird kind of problem for me ..

- Original Message -
From: "David Otton" <[EMAIL PROTECTED]>
To: "Binay" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Friday, October 17, 2003 4:16 PM
Subject: Re: [PHP] Session not getting destroyed !


> On Fri, 17 Oct 2003 15:58:36 +0530, you wrote:
>
> >My session is not getting destroyed once i close the browser. Problem is
only in IE 5 as IE 6+ its getting destroyed. I don't know what is the
problem. I looked at the session settings parameters in php.ini file but
couldn't figure it out.
> >
> >I am using php 4.2.3
> >and session.cookie_lifetime is set to 0 also.
>
> Are you certain cookie_lifetime is set to 0?
>
> print_r (session_get_cookie_params ());

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Session not getting destroyed !

2003-10-17 Thread David Otton
On Fri, 17 Oct 2003 15:58:36 +0530, you wrote:

>My session is not getting destroyed once i close the browser. Problem is only in IE 5 
>as IE 6+ its getting destroyed. I don't know what is the problem. I looked at the 
>session settings parameters in php.ini file but couldn't figure it out.
>
>I am using php 4.2.3 
>and session.cookie_lifetime is set to 0 also.

Are you certain cookie_lifetime is set to 0?

print_r (session_get_cookie_params ());

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Session not getting destroyed !

2003-10-17 Thread Binay
Hi all,

My session is not getting destroyed once i close the browser. Problem is only in IE 5 
as IE 6+ its getting destroyed. I don't know what is the problem. I looked at the 
session settings parameters in php.ini file but couldn't figure it out.

I am using php 4.2.3 
and session.cookie_lifetime is set to 0 also.

Please help me out.

Thanks in advance

Binay