Hi guys.
I have used session correctly for login part of my project.
But, I found a severe problem that all session information was expired after I click ‘back’ button in IE.
When I tested it all the other browser such as FF, Chrome, Safari, it doesn’t cause the problem. But, only IE expired all session data and created new session_id.
Please give me your help.
$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'] = TRUE;
$config['sess_table_name'] = 'ci_sessions';
$config['sess_match_ip'] = FALSE;
$config['sess_match_useragent'] = FALSE;
$config['sess_time_to_update'] = 300;
$config['cookie_prefix'] = "";
$config['cookie_domain'] = "";
$config['cookie_path'] = "/";
$config['cookie_secure'] = FALSE;