Today's Question:  What does your personal desk look like?        GIVE A SHOUT

Set PHP session timeout

  sonic0002        2013-08-31 08:11:03       21,248        3    

There are many different discussions about PHP sessions. We may often face some weird issues while handling PHP sessions. Sometimes session is expired earlier than expected. Or sometimes the session is not expired. This introduces many confusions.

Today we discuss how to set PHP session timeout correctly today. In php.ini, there are three key parameters which will affect the session timeout. session.gc_maxlifetime, session.gc_probability and session.gc_divisor. session.gc_maxlifetime defined the lifetime of a session in seconds which indicates when the session will be garbage collected. Then session.gc_probability and session.gc_divisor will determine the probability an expired session will be garbage collected when a new session to the website is established. When session.gc_probability and session.gc_divisor are equal, then the expired sessions will be garbage collected each time when there is a new session created. But to avoid affecting the performance, session.gc_probability/session.gc_divisor should not be too high.

There are three ways you can set session.gc_maxlifetime:

  • session.gc_maxlifetime in php.ini. The default value is 1440 seconds which is 24 minutes;
  • ni_set(“session.gc_maxlifetime”, time_in_seconds); -- Put this at the beginning of PHP code
  • php_value session.gc_maxlifetime time_in_seconds  --Set this in .htaccess if you have no access to php.ini.

The above way to set session timeout is not reliable. The reason for this and why we should implement a session timeout mechanism ourselves can be found at What you may not know about PHP session.

PHP  SESSION  TIMEOUT 

Share on Facebook  Share on Twitter  Share on Weibo  Share on Reddit 

  RELATED


  3 COMMENTS


andishe [Reply]@ 2015-12-27 07:03:56

Thank you.

Anonymous [Reply]@ 2020-01-24 03:22:59

fbfgjdjgdjgdjghjdhgkjdhg

Anonymous [Reply]@ 2020-03-09 05:58:27

wefwefwef