Hi,
I'm currently working to improve the way we handle sessions on my website.
One thing I would like to modify is the session's lifetime. I had a look at the php documentation on php.net and found :
session.gc_maxlifetime : session.gc_maxlifetime specifies the number of seconds after which data will be seen as 'garbage' and cleaned up.
If I have set php.ini so that :
session.gc_maxlifetime=1440
Does it mean the session's lifetime is 1440 seconds, from the moment the session has been first initialized ; or that each time the function session_start() is exectued, the session has a lifetime of 1440 seconds ?
thanks !