2
I made a control panel for a customer and in this panel my client can edit the products of the site. After the customer Edit a product and click on Save, When the client will try to edit more fields the system redirects to the login page, that is, the session expires, because when there is no session the system redirects to the login page. Sometimes the client navigating the control panel, in just over 2 minutes it redirects to the login page. Below the file session settings application/config.php
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 0;
$config['sess_expire_on_close'] = FALSE;
$config['sess_encrypt_cookie'] = FALSE;
$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'] = 86400;