diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-04-08 23:13:15 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-04-09 20:47:36 +0200 |
commit | 3f01ddce9dff69a49493541882de85854cbcebe5 (patch) | |
tree | 13c23f0a6893970ca71fbbfe763c3c696c8a0a4b /application/config/example/config.php | |
parent | b18f4e453ecdf3404a107f9fc72d7bd9249401d0 (diff) |
start working on users
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/config/example/config.php')
-rwxr-xr-x | application/config/example/config.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/application/config/example/config.php b/application/config/example/config.php index bcd71a5ce..bd9ec40aa 100755 --- a/application/config/example/config.php +++ b/application/config/example/config.php @@ -224,7 +224,7 @@ $config['cache_path'] = ''; | MUST set an encryption key. See the user guide for info. | */ -$config['encryption_key'] = ''; +$config['encryption_key'] = ''; # set this to a 32char random string /* |-------------------------------------------------------------------------- @@ -248,7 +248,7 @@ $config['sess_cookie_name'] = 'ci_session'; $config['sess_expiration'] = 7200; $config['sess_expire_on_close'] = FALSE; $config['sess_encrypt_cookie'] = FALSE; -$config['sess_use_database'] = FALSE; +$config['sess_use_database'] = true; $config['sess_table_name'] = 'ci_sessions'; $config['sess_match_ip'] = FALSE; $config['sess_match_useragent'] = TRUE; @@ -379,8 +379,6 @@ $config['upload_max_age'] = 60*60*24*5; // 5 days // won't be deleted $config['small_upload_size'] = 1024*10; // 10KB -$config['passwordsalt'] = ''; // just enter any string you want here - $config['contact_me_url'] = ''; // ommiting this will remove the "contact me" line. /* End of file config.php */ |