I have created a login system in codeigniter project, which is working fine in Firefox but doesn\'t work in Chrome, data fetch and set for session but when this code redirec
I know this is a late answer but if you're looking for a good solution here it is: use this code as the logging out code:
$this->session->sess_destroy();
This will insure removal of session "ci_session" which is the main reason you can't save a new session, hope it helps