This may sound straight forward, but I couldn't find a solution to it. I am using the latest version of CI to build a website framework. I am using sessions to store access information for allowing users to access certain pages. This works just fine in firefox, chrome, safari and versions IE 9 and below. However, with IE10, the sessions are being unset automatically when I change pages within the framework. So for instance I'm on a dashboard and I click a link to take me to localhost/sitename/admin/settings, IE10 destroys all session information and thus I am getting logged out and redirected to the login page. I tried changing sess_cookie_name to cisessions (I've seen this in other answers) but that had no effect.
Has anyone else come across this issue, or know of a working solution?
Thanks in advance.
EDIT:
Should have waited to post this :)
Found solution after more digging,
$config['sess_cookie_name'] = 'cisession';
$config['sess_match_useragent'] = FALSE;
New question then, is sess_match_useragent absolutely important for CI security purposes, or can it remain off for all browsers?