/* set the cache limiter to 'verify_user' */
session_cache_limiter('verify_user');
$cache_limiter = session_cache_limiter();
/* set the cache expire to 60 minutes */
session_cache_expire(60);
$cache_expire = session_cache_expire();
/* start the session */
session_start();