Changeset 280
- Timestamp:
- 05/31/07 11:53:04
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
FreakAuth/trunk/www/system/application/config/config_demo.php
r237 r280 221 221 | 222 222 */ 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 223 225 $config['sess_cookie_name'] = 'FreakAuth'; 226 224 227 $config['sess_expiration'] = 7200; 228 229 // true is better for security reasons 225 230 $config['sess_encrypt_cookie'] = TRUE; 231 232 // DB_session (that FAL uses) needs to use the database 226 233 $config['sess_use_database'] = TRUE; 234 227 235 $config['sess_table_name'] = 'ci_sessions'; 236 237 // those settings will improve security but are sometimes too restrictive 228 238 $config['sess_match_ip'] = FALSE; 229 239 $config['sess_match_useragent'] = FALSE;
