Ignore:
Timestamp:
Oct 3, 2004, 1:12:50 AM (20 years ago)
Author:
z0rglub
Message:
  • 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
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/config.inc.php

    r531 r541  
    9090$conf['calendar_datefield'] = 'date_available';
    9191$conf['rate'] = true;
     92
     93// time of validity for "remember me" cookies, in seconds.
     94$conf['remember_me_length'] = 31536000;
     95
     96// time of validity for normal session, in seconds.
     97$conf['session_length'] = 3600;
     98
     99// session id length when session id in URI
     100$conf['session_id_size_URI'] = 4;
     101
     102// session id length when session id in cookie
     103$conf['session_id_size_cookie'] = 50;
    92104?>
Note: See TracChangeset for help on using the changeset viewer.