I had a problem with session variables being lost. However it wasn't because
of a heavy load. My hosting company does load balancing and user requests
would be directed to different servers. However, when the session was
originally defined it was placed in the /tmp file of one server. When a
request came into a different server it wouldn't "know" about the session
and hence the
variables seemed "lost" only to reappear unexpectedly a few requests later.
I fixed the problem by defining the /tmp directory to my public_html
directory.

This may have nothing to do with your isse but the heavy load you are
experiencing may be triggering some load balancing mechanism which is
directing users to another server that isn't aware of your session
variables.


"Boot" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> My server was under a heavy load (rebuilding software raid 1 array) and my
> PHP+MySQL site seemed to be all "messed up." From what I can makeout
session
> variables were being lost. I would expect simply degraded performance but
> not the loss of variables. Is this normal? LOL the array is still
rebuilding
> right now and the alternative problem means something happened to my code
> (yes I have backups :))
>
> Thanks for any comments!

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

Reply via email to