I need to keep a session alive for 30 minutes and then destroy it.
|
|
You should implement a session timeout on your own. Both options mentioned by others (session.gc_maxlifetime and session.cookie_lifetime) are not reliable. I’ll explain the reason for that. First:
But the garbage collector is only started with a probability of session.gc_probability divided by session.gc_divisor. And using the default values for that options (1 and 100 respectively), the chance is only at 1%. Well, you could argue to simply adjust these values so that the garbage collector is started more often. But when the garbage collector is started, it will check the validity for every registered session. And that is cost-intensive. Furthermore, when using PHP’s default session save handler files, the session data is stored in files in a path specified in session.save_path. With that session handler the age of the session data is calculated on the file’s last modification date and not the last access date:
So it additionally might occur that a session data file is deleted while the session itself is still considered as valid because the session data was not updated recently. And second:
Yes, that’s right. This does only affect the cookie lifetime and the session itself may be still valid. But it’s the server’s task to invalidate a session, not the client’s. So this doesn’t help anything. In fact, having session.cookie_lifetime set to So to conclude: The best solution is to implement a session timeout on your own. Use a simple time stamp that denotes the time of the last activity (i.e. request) and update it with every request:
Updating the session data with every request does also change the session file’s modification date so that the session is not removed by the garbage collector prematurely. You can also use an additional time stamp to regenerate the session ID periodically to avoid attacks on sessions like session fixation:
note that |
|||||||||||||||||||||
|
Simple way of PHP session expiry in 30 minutes.Note : if you want to change the time, just change the 30 with you desired time and do not change * 60 : this will gives the minutes in minutes : (30 * 60) Login.php
HomePage.php
LogOut.php
|
|||||
|
|
Is this to log the user out after a set time? Setting the session creation time (or an expiry time) when it is registered, and then checking that on each page load could handle that. E.g.:
Edit: I've got a feeling you mean something else though. You can scrap sessions after a certain lifespan by using the
|
|||||||||||
|
|
|||
|
|
|
session_cache_expire(30); $cache_expire = session_cache_expire(); session_start(); echo "The cache limiter is now set to $cache_limiter |
|||
|
|
protected by Madara Uchiha May 19 '12 at 20:43
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
