Jump to content

Recommended Posts

Hello,

 

Im looking for a way to log a user out if they have been inactive for two long.  My gues to for this would be to update a timestamp every time they do anything, and have a cron job log out any one who have a time stamp older then say 10 mins.... This is i have never used time stamps with a database etc before and have no idea how to compair them!  Can anyone help?

 

Many Thanks!

 

 

Link to comment
https://forums.phpfreaks.com/topic/37049-session-time-out/
Share on other sites

From the manual:

session.gc_maxlifetime specifies the number of seconds after which data will be seen as 'garbage' and cleaned up. Garbage collection occurs during session start.

 

So if you set it to 10 mins, a session that wasn't active for 10 mins it will considered as "garbage" and will be deleted from the server's memory.

 

Orio.

Link to comment
https://forums.phpfreaks.com/topic/37049-session-time-out/#findComment-176983
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.