Per quanto ho capito, la durata della sessione di Drupal è limitata, in quanto l' session.gc_maxlifetime
impostazione predefinita è di circa 2,3 giorni.
Allora a che cosa serve session.cookie_lifetime
essere impostato su 23 giorni?
Ecco lo snippet di settings.php:
/**
* Set session lifetime (in seconds), i.e. the time from the user's last visit
* to the active session may be deleted by the session garbage collector. When
* a session is deleted, authenticated users are logged out, and the contents
* of the user's $_SESSION variable is discarded.
*/
ini_set('session.gc_maxlifetime', 200000);
/**
* Set session cookie lifetime (in seconds), i.e. the time from the session is
* created to the cookie expires, i.e. when the browser is expected to discard
* the cookie. The value 0 means "until the browser is closed".
*/
ini_set('session.cookie_lifetime', 2000000);
Supponiamo che io abbia impostato entrambi session.gc_probability
e session.gc_divisor
su 1 solo per il bene di questa domanda.