From fb448187078ace6574f145c39c319c38a287c84b Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sat, 1 Aug 2015 12:35:06 -0400 Subject: Add config parameter to define session duration --- app/constants.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'app/constants.php') diff --git a/app/constants.php b/app/constants.php index e232aba6..e73e7b1a 100644 --- a/app/constants.php +++ b/app/constants.php @@ -93,3 +93,7 @@ defined('HIDE_LOGIN_FORM') or define('HIDE_LOGIN_FORM', false); defined('BRUTEFORCE_CAPTCHA') or define('BRUTEFORCE_CAPTCHA', 3); defined('BRUTEFORCE_LOCKDOWN') or define('BRUTEFORCE_LOCKDOWN', 6); defined('BRUTEFORCE_LOCKDOWN_DURATION') or define('BRUTEFORCE_LOCKDOWN_DURATION', 15); + +// Session duration in second (0 = until the browser is closed) +// See http://php.net/manual/en/session.configuration.php#ini.session.cookie-lifetime +defined('SESSION_DURATION') or define('SESSION_DURATION', 0); -- cgit v1.2.3