> The session  variables will remain set, but will it looks 
> like my session gets lost every now and then....  if you want 
> to see an example, go to http://northpointless.org/test.php  
> and hit refresh several times. I cannot figure out what is happening.

Did you get this figured out? It looks like you are running on a
load-balanced web farm. If so, and you are saving session data in files,
there's your problem. The session file is saved on the server that handles
the first request. When later requests go to a different machine, the
session file can't be found, since it is on the first server.

Kirk

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to