diff options
author | z0rglub <z0rglub@piwigo.org> | 2004-10-02 23:12:50 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2004-10-02 23:12:50 +0000 |
commit | 3c8309a7e621ede168cf7f6dfd8c8d55144525ea (patch) | |
tree | 8b13443d84b3eae9ddead399bea404a981b2bc60 /include/config.inc.php | |
parent | da836ea95fce9a8b5711366253832d298e3c4a6e (diff) |
- deletion of session_time and session_id_size as config parameter
- new feature : "remember me" creates a long time cookie
- possibility to set the default authentication method to URI or cookie
- really technical parameters (session identifier size, session duration)
are set in the config file and not in database + configuration.php
git-svn-id: http://piwigo.org/svn/trunk@541 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/config.inc.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/config.inc.php b/include/config.inc.php index 1e4c4dcc5..a2a3b0d4c 100644 --- a/include/config.inc.php +++ b/include/config.inc.php @@ -89,4 +89,16 @@ $conf['show_exif_fields'] = array('Make', $conf['calendar_datefield'] = 'date_available'; $conf['rate'] = true; + +// time of validity for "remember me" cookies, in seconds. +$conf['remember_me_length'] = 31536000; + +// time of validity for normal session, in seconds. +$conf['session_length'] = 3600; + +// session id length when session id in URI +$conf['session_id_size_URI'] = 4; + +// session id length when session id in cookie +$conf['session_id_size_cookie'] = 50; ?> |