login system fixes

This commit is contained in:
Andrew Dolgov 2007-03-02 12:12:04 +01:00
parent 1df0f48b21
commit f7c390b878
2 changed files with 5 additions and 8 deletions

View File

@ -108,15 +108,12 @@
// Bind session to client IP address (recommended)
define('SESSION_COOKIE_LIFETIME', 0);
// Default lifetime of a session cookie. In seconds,
// 0 means delete on browser close
define('SESSION_COOKIE_LIFETIME_REMEMBER', 86400);
// Session cookie lifetime if "remember me" is checked on login.
// Default lifetime of a session (e.g. login) cookie. In seconds,
// 0 means cookie will be deleted when browser closes.
define('SESSION_EXPIRE_TIME', 86400);
// Hard expiration limit for sessions. Should be
// >= SESSION_COOKIE_LIFETIME_REMEMBER
// greater or equal to SESSION_COOKIE_LIFETIME
define('DAEMON_UPDATE_LOGIN_LIMIT', 0);
// Stop updating feeds of user who was never logged in

View File

@ -46,9 +46,9 @@
$err_msg = _("config: SESSION_EXPIRE_TIME is too low (less than 60)");
}
if (SESSION_EXPIRE_TIME < SESSION_COOKIE_LIFETIME_REMEMBER) {
if (SESSION_EXPIRE_TIME < SESSION_COOKIE_LIFETIME) {
$err_msg = _("config: SESSION_EXPIRE_TIME should be greater or equal to" .
"SESSION_COOKIE_LIFETIME_REMEMBER");
"SESSION_COOKIE_LIFETIME");
}
/* if (defined('DISABLE_SESSIONS')) {