mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-10 11:25:04 -05:00
fix of #115, server relater config value added
This commit is contained in:
parent
eb5b677250
commit
2a97194253
3
inc/3rdparty/Session.class.php
vendored
3
inc/3rdparty/Session.class.php
vendored
@ -73,6 +73,9 @@ class Session
|
||||
else {
|
||||
session_set_cookie_params('', $cookiedir, $_SERVER['HTTP_HOST'], $ssl, true);
|
||||
}
|
||||
//set server side valid session timeout
|
||||
//WARNING! this may not work in shared session environment. See http://www.php.net/manual/en/session.configuration.php#ini.session.gc-maxlifetime about min value: it can be set in any application
|
||||
ini_set('session.gc_maxlifetime', self::$longSessionTimeout);
|
||||
|
||||
// Use cookies to store session.
|
||||
ini_set('session.use_cookies', 1);
|
||||
|
Loading…
Reference in New Issue
Block a user