So I want to use session management - that is so that I can manage sessions without the requirment of cookies.
I have most things figured out, but I have one lingering problem. If someone logs in - then sits on a page for a long time, until the session times out, then of course, I get an invalid session error.
So I'm not sure want to do to prevent the error which is bound to perplex a casual user. I suppose I need to either generate a new session id or find a way to re-validate one that has timed out.
I suppose i could make session variables not time out for a week or more, but people like me, who don;t close their applications for months at a time can still get this issue.
Any suggestions?
I have most things figured out, but I have one lingering problem. If someone logs in - then sits on a page for a long time, until the session times out, then of course, I get an invalid session error.
So I'm not sure want to do to prevent the error which is bound to perplex a casual user. I suppose I need to either generate a new session id or find a way to re-validate one that has timed out.
I suppose i could make session variables not time out for a week or more, but people like me, who don;t close their applications for months at a time can still get this issue.
Any suggestions?