Soweit ich weiß, ist die Sitzungslebensdauer bei Drupal begrenzt, da die session.gc_maxlifetime
Einstellung standardmäßig auf etwa 2,3 Tage festgelegt ist.
Was nützt session.cookie_lifetime
es dann, auf 23 Tage eingestellt zu sein?
Hier ist der Ausschnitt aus 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);
Bitte nehmen Sie an, dass ich beide session.gc_probability
und session.gc_divisor
nur wegen dieser Frage auf 1 gesetzt habe .