mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-24 01:51:01 +00:00
[change] time for session
This commit is contained in:
parent
f14807de06
commit
16fd1cce61
1 changed files with 2 additions and 2 deletions
4
inc/3rdparty/Session.class.php
vendored
4
inc/3rdparty/Session.class.php
vendored
|
@ -31,9 +31,9 @@ class Session
|
||||||
public static $sessionName = '';
|
public static $sessionName = '';
|
||||||
// If the user does not access any page within this time,
|
// If the user does not access any page within this time,
|
||||||
// his/her session is considered expired (3600 sec. = 1 hour)
|
// his/her session is considered expired (3600 sec. = 1 hour)
|
||||||
public static $inactivityTimeout = 3600;
|
public static $inactivityTimeout = 86400;
|
||||||
// Extra timeout for long sessions (if enabled) (82800 sec. = 23 hours)
|
// Extra timeout for long sessions (if enabled) (82800 sec. = 23 hours)
|
||||||
public static $longSessionTimeout = 82800;
|
public static $longSessionTimeout = 31536000;
|
||||||
// If you get disconnected often or if your IP address changes often.
|
// If you get disconnected often or if your IP address changes often.
|
||||||
// Let you disable session cookie hijacking protection
|
// Let you disable session cookie hijacking protection
|
||||||
public static $disableSessionProtection = false;
|
public static $disableSessionProtection = false;
|
||||||
|
|
Loading…
Reference in a new issue