Re: [PHP] cookies with internet explorer on macs

2003-04-01 Thread Brent Baisley
One thing to check is the time zone that you have set on the server and 
the client machines. I remembering reading about cookie duration issues 
before, but I forget exactly where the problem was.

There is a link between IE and Entourage/Outlook Express on the Mac. 
One thing I see as a problem is that quitting out of IE does not 
release the session cookies if Entourage or Outlook Express is open. 
You have to quit both program to clear session cookies. I haven't 
actually tested this in the very latest versions, but it worked this 
way under OS9.

On Monday, March 31, 2003, at 11:53 PM, Lowell Allen wrote:

A designer I work with was having problems with his sessions sometimes
expiring after a few minutes. He uses OS X/Internet 
Explorer/Entourage. He
determined that whenever he checks his email with Entourage, his 
session
cookie is no longer recognized. He got Microsoft support to duplicate 
and
acknowledge the problem. I use Mac OS 9/Internet Explorer/Outlook 
Express --
no problem.

--
Brent Baisley
Systems Architect
Landover Associates, Inc.
Search  Advisory Services for Advanced Technology Environments
p: 212.759.6400/800.759.0577
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] cookies with internet explorer on macs

2003-03-31 Thread Jimmy Brake
Hi!

The cookies i set for people using Internet Explorer on mac (OS X or mac
os 8-9) are not staying alive as long as I would like(12hours) they only
last for a few hours or sometimes even a few minutes, the time on the
end users computers are set correctly. IE on windows is fine and Mozilla
and other browsers on linux are fine. 

This is what I use to set the cookie.  

$rand = md5(uniqid(rand()));
setcookie(sessid, $rand, time()+43200, /);

Any ideas? 

Thanks!

Jimmy


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



Re: [PHP] cookies with internet explorer on macs

2003-03-31 Thread Lowell Allen
 From: Jimmy Brake [EMAIL PROTECTED]
 
 The cookies i set for people using Internet Explorer on mac (OS X or mac
 os 8-9) are not staying alive as long as I would like(12hours) they only
 last for a few hours or sometimes even a few minutes, the time on the
 end users computers are set correctly. IE on windows is fine and Mozilla
 and other browsers on linux are fine.
 
 This is what I use to set the cookie.
 
 $rand = md5(uniqid(rand()));
 setcookie(sessid, $rand, time()+43200, /);
 
 Any ideas? 

A designer I work with was having problems with his sessions sometimes
expiring after a few minutes. He uses OS X/Internet Explorer/Entourage. He
determined that whenever he checks his email with Entourage, his session
cookie is no longer recognized. He got Microsoft support to duplicate and
acknowledge the problem. I use Mac OS 9/Internet Explorer/Outlook Express --
no problem.

--
Lowell Allen


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



Re: [PHP] cookies with internet explorer on macs

2003-03-31 Thread Jimmy Brake
thanks ... lots of my customers use entourage ... 

On Mon, 2003-03-31 at 20:53, Lowell Allen wrote:
  From: Jimmy Brake [EMAIL PROTECTED]
  
  The cookies i set for people using Internet Explorer on mac (OS X or mac
  os 8-9) are not staying alive as long as I would like(12hours) they only
  last for a few hours or sometimes even a few minutes, the time on the
  end users computers are set correctly. IE on windows is fine and Mozilla
  and other browsers on linux are fine.
  
  This is what I use to set the cookie.
  
  $rand = md5(uniqid(rand()));
  setcookie(sessid, $rand, time()+43200, /);
  
  Any ideas? 
 
 A designer I work with was having problems with his sessions sometimes
 expiring after a few minutes. He uses OS X/Internet Explorer/Entourage. He
 determined that whenever he checks his email with Entourage, his session
 cookie is no longer recognized. He got Microsoft support to duplicate and
 acknowledge the problem. I use Mac OS 9/Internet Explorer/Outlook Express --
 no problem.
 
 --
 Lowell Allen
-- 
Jimmy Brake [EMAIL PROTECTED]


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