CodeIgniter Forums
dbsession problem - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: dbsession problem (/showthread.php?tid=14756)



dbsession problem - El Forum - 01-14-2009

[eluser]dimis[/eluser]
I use dbsession and CI 1.7.
I have a MY_controller with this code
Code:
function Islogin()
    {
         $this->object =& get_instance();
        if ( $this->object->db_session->userdata('userid')!='1')
        {
            return false;
        }
        else
        return true;

    }
My problem is that now when I login and navigate at my "manager"< when I try to post a form I am redirecting at login page (lost sesion?).Yesterday I put at code some models,controllers and views from a CI 1.6.3 setup, this problem were not here before.
What is the problem?


dbsession problem - El Forum - 01-14-2009

[eluser]dimis[/eluser]
At one controller I solved it, it was related with the code.
Dimis