RE: [PHP] PHPSESSIONID altering each time the page is loaded in IE

2004-01-20 Thread Tarrant Costelloe
Nope, calling it once. For some odd reason as I have detailed here
http://bugs.php.net/bug.php?id=26950 IE is loosing all it's cookie data
on different clicks around the website. A piece at a time, however MOZ
and Opera are fine.

In Fellowship,
Tarrant 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: 21 January 2004 00:22
To: [EMAIL PROTECTED]
Subject: Re: [PHP] PHPSESSIONID altering each time the page is loaded in
IE


> As the subject says, I posted this bug report on the official php bugs

> page http://bugs.php.net/bug.php?id=26950 and have now changed my 
> storing of user information to use cookies as such:
>
> setcookie("cookie_auth_memberID", $row['id'], time()+604800,'/'); 
> setcookie("cookie_auth_Username", $frmUsername, time()+604800,'/'); 
> setcookie("cookie_auth_Password", $frmPassword, time()+604800,'/'); 
> setcookie("cookie_auth_Group", $row['membergroup'], 
> time()+604800,'/');
>
> However anyway, on displaying my PHPSESSIONID in Internet Explorer 6, 
> I am now noticing that on the refresh of any page (by clicking on any 
> internal site link) the PHPSESSIONID is changing! This doesn't 
> happen in Mozilla or Opera, any ideas folks?
>

The only thing i have experienced is if you are calling session_start
twice ?



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

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



Re: [PHP] PHPSESSIONID altering each time the page is loaded in IE

2004-01-20 Thread daniel
> As the subject says, I posted this bug report on the official php bugs
> page http://bugs.php.net/bug.php?id=26950 and have now changed my
> storing of user information to use cookies as such:
>
> setcookie("cookie_auth_memberID", $row['id'], time()+604800,'/');
> setcookie("cookie_auth_Username", $frmUsername, time()+604800,'/');
> setcookie("cookie_auth_Password", $frmPassword, time()+604800,'/');
> setcookie("cookie_auth_Group", $row['membergroup'], time()+604800,'/');
>
> However anyway, on displaying my PHPSESSIONID in Internet Explorer 6, I
> am now noticing that on the refresh of any page (by clicking on any
> internal site link) the PHPSESSIONID is changing! This doesn't
> happen in Mozilla or Opera, any ideas folks?
>

The only thing i have experienced is if you are calling session_start
twice ?



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



[PHP] PHPSESSIONID altering each time the page is loaded in IE

2004-01-20 Thread Tarrant Costelloe
As the subject says, I posted this bug report on the official php bugs
page http://bugs.php.net/bug.php?id=26950 and have now changed my
storing of user information to use cookies as such:

setcookie("cookie_auth_memberID", $row['id'], time()+604800,'/');
setcookie("cookie_auth_Username", $frmUsername, time()+604800,'/');
setcookie("cookie_auth_Password", $frmPassword, time()+604800,'/');
setcookie("cookie_auth_Group", $row['membergroup'], time()+604800,'/');

However anyway, on displaying my PHPSESSIONID in Internet Explorer 6, I
am now noticing that on the refresh of any page (by clicking on any
internal site link) the PHPSESSIONID is changing! This doesn't
happen in Mozilla or Opera, any ideas folks?

Top of each page looks like such:

session_save_path("/home/tazonlin/webs/www.planet-tolkien.com/sessions")
; 
session_start();

Regards,
 
Tarrant Costelloe

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