PHP session expiring too early

Kyle Hudson picture Kyle Hudson · Feb 8, 2011 · Viewed 8.9k times · Source

I have an issue, my apps sessions are expiring unexpectedly after about 15 minutes. I need them to expire after 4 hours.

The server is Centos 5.5, PHP is 5.3.2.

Below is my code (included in an global header).

<?php
session_name('MobileSuiteHQ');
if(!session_id()) {
    session_start();
}
ini_set('memory_limit', '512M');
ini_set('session.gc_maxlifetime', 14400000);
ini_set('session.cookie_lifetime', 14400000);
ini_set('session.gc_divisor', 1000);
ini_set('session.use_cookies', 0);
ini_set('max_execution_time', 300);
ini_set('session.name','MobileSuiteHQ');
?>

My .htaccess file contains:

php_value session.gc_maxlifetime 14400000
php_value session.cookie_lifetime 14400000
php_value session.use_cookies 0
php_value session.gc_divisor 1000

Any help or insight would be greatful.

EDIT: I was unable to login when i updated my .htaccess file, the session wasn't starting. So I have now removed:

php_value session.use_cookies 0

which now allows me to login.

Answer

Nate Fox picture Nate Fox · Feb 25, 2011

I dont know about CentOS, but on Ubuntu the php5 package installs a /etc/cron.d/php5 file that'll remove 'untouched for 24min' session files on the :9 and :39 of every hour. So you have a minimum of 24min and max of 54min sessions.