codeigniter session not destroy on IE

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
uday M
Forum Newbie
Posts: 5
Joined: Sat Jan 24, 2009 8:00 am

codeigniter session not destroy on IE

Post by uday M »

hi,
I create site using codeigniter and use database for session with redux_auth libraries.
In that logout function work on FireFox on server
but on IE it work's only one's after that it update database table using first session_id.

my redux_auth libraries code is :

Code: Select all

 
    public function logout()
        {
            $this->ci->session->unset_userdata('id');
            $this->ci->session->sess_destroy();
        }
 
pls help
BomBas
Forum Commoner
Posts: 41
Joined: Wed Mar 04, 2009 1:04 pm

Re: codeigniter session not destroy on IE

Post by BomBas »

Hey man, you should ask this at CodeIgniter forums.
http://codeigniter.com/forums/
Post Reply