summaryrefslogtreecommitdiffstats
path: root/system/application/config
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2007-08-10 05:16:16 +0200
committerDerek Allard <derek.allard@ellislab.com>2007-08-10 05:16:16 +0200
commit428e96442ce4534e337404e5d4a436bd753b7cf6 (patch)
tree35080dc0c1bb3d65d95a13b65532dea5dbc0ba03 /system/application/config
parent4db34914a09f964f7b3886bf740975878eea2505 (diff)
Added Flashdata variables, session_id regeneration and configurable session update times to the Session class
Diffstat (limited to 'system/application/config')
-rw-r--r--system/application/config/config.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/system/application/config/config.php b/system/application/config/config.php
index f0ba241f6..c84a4d802 100644
--- a/system/application/config/config.php
+++ b/system/application/config/config.php
@@ -227,6 +227,7 @@ $config['encryption_key'] = "";
| 'encrypt_sess_cookie' = TRUE/FALSE (boolean). Whether to encrypt the cookie
| 'session_expiration' = the number of SECONDS you want the session to last.
| by default sessions last 7200 seconds (two hours). Set to zero for no expiration.
+| 'time_to_update' = how many seconds between CI refreshing Session Information
|
*/
$config['sess_cookie_name'] = 'ci_session';
@@ -236,6 +237,7 @@ $config['sess_use_database'] = FALSE;
$config['sess_table_name'] = 'ci_sessions';
$config['sess_match_ip'] = FALSE;
$config['sess_match_useragent'] = TRUE;
+$config['sess_time_to_update'] = 300;
/*
|--------------------------------------------------------------------------