Uploadify with IE (Internet Explorer) destroy the session or reset the session in Codeigniter.

I was totally Fed up with this that why session destroyed every time when i upload a file in IE browser.

I was using codeigniter and on a form i use uploadify, When i upload a photo and click on submit it take me on login page when i was login what is the problem with that.

So Finally i solved this problem, Please take a look

Open app/config/config.php

In your config.php you can set your

$config['sess_match_useragent']= FALSE; 

When doing this CI 2.0 atleast, won’t create a new session for the flash object, and thus not kill your current session in IE.

Comments

Post a Comment