Changeset 280

Show
Ignore:
Timestamp:
05/31/07 11:53:04
Author:
grahack
Message:

added some comment to the session section of the config file

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • FreakAuth/trunk/www/system/application/config/config_demo.php

    r237 r280  
    221221| 
    222222*/ 
     223// you are free to change this string, but if you do so after someone got a 
     224// cookie, FAL won't be able to find it 
    223225$config['sess_cookie_name']             = 'FreakAuth'; 
     226 
    224227$config['sess_expiration']              = 7200; 
     228 
     229// true is better for security reasons 
    225230$config['sess_encrypt_cookie']  = TRUE; 
     231 
     232// DB_session (that FAL uses) needs to use the database 
    226233$config['sess_use_database']    = TRUE; 
     234 
    227235$config['sess_table_name']              = 'ci_sessions'; 
     236 
     237// those settings will improve security but are sometimes too restrictive 
    228238$config['sess_match_ip']                = FALSE; 
    229239$config['sess_match_useragent'] = FALSE;