07-12-2009, 06:00 AM
[eluser]darkhouse[/eluser]
I needed something similar as IE doesn't like any of the session libraries here, including the default CI session library. So one my colleagues wrote this and it works great.
http://codeigniter.com/wiki/Session_Hybrid/
It uses native PHP sessions to manage the session id, ip, user agent and last activity, and then stores all session data in the database. It's a drop in replacement, so no extra work needs to be done to use it.
Hope that helps.
I needed something similar as IE doesn't like any of the session libraries here, including the default CI session library. So one my colleagues wrote this and it works great.
http://codeigniter.com/wiki/Session_Hybrid/
It uses native PHP sessions to manage the session id, ip, user agent and last activity, and then stores all session data in the database. It's a drop in replacement, so no extra work needs to be done to use it.
Hope that helps.