web-dev-qa-db-ja.com

セッションタイムアウトモジュール

セッションタイムアウトに最適なモジュールは何ですか?

一定時間操作がないと、ユーザーが自動的にタイムアウトするようにしたいだけです。

Automated Logout モジュールは、トリックのように見えましたが、もっと多くのことをしているようです。また、Drupal 7を使用していますが、まだ開発中です。

5
Kim Prince

設定ファイルには、セッションタイムアウトを自由に設定できるオプションが2つあります session.gc_maxlifetimesession.cookie_lifetime

/**
 * 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);
6
Chance G