I created php application which require login, and this login is
control by session.
I registered a session variable if succesfully login :
$is_login = 1;
p/s : for keep it simple, here i excludes some of the code like
register session.
Some user complained to me that after a while, they are auto
kick out from the system. As i know if the user is not active
after 30 minutes(by php default), session will destroy, and
$is_login will be unset. But the page they are viewing is
is keep on refresh very 10 seconds, the session suddenly
auto lost , my system will check if session is lost then require
the user to login again.
The weird thing is why session is lost ? i pass the session as
cookies as well as with the url, and the user are active for every
10 seconds.
I doubt whether or not the session directory is full or wut.
pls help if you found this problem before and u know the solution.
thanks for your idea and answer.
regard,
michael