Open-AudIT
https://www.open-audit.org/phpBB3/

[help] [solved] Disabling idle time out?
https://www.open-audit.org/phpBB3/viewtopic.php?f=5&t=3274
Page 1 of 1

Author:  perth_wolfman [ Sat Apr 25, 2009 11:33 pm ]
Post subject:  [help] [solved] Disabling idle time out?

Just wondering if there was a way to disable the idle timeout?

I've got O-A open in my browser all day long and it's annoying having to re-login whenever I just want to do a quick lookup.

Author:  sas [ Sat Feb 23, 2013 12:54 am ]
Post subject:  Re: Disabling idle time out?

If we can't disable it at least increasing it to a reasonable value would be nice.

Author:  Mark [ Sat Feb 23, 2013 9:10 am ]
Post subject:  Re: Disabling idle time out?

You can alter the following lines in code_igniter/application/config/config.php

[code]/*
|--------------------------------------------------------------------------
| Session Variables
|--------------------------------------------------------------------------
|
| 'session_cookie_name' = the name you want for the cookie
| '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';
$config['sess_expiration'] = 7200;
$config['sess_encrypt_cookie'] = TRUE;
$config['sess_use_database'] = FALSE;
$config['sess_table_name'] = 'oa_user_sessions';
$config['sess_match_ip'] = FALSE;
$config['sess_match_useragent'] = TRUE;
$config['sess_time_to_update'] = 300;[/code]

Page 1 of 1 All times are UTC + 10 hours
Powered by phpBB® Forum Software © phpBB Group
https://www.phpbb.com/