Welcome Guest, Not a member yet? Register   Sign In
Session Class -> sess_destroy not removing session
#11

[eluser]CroNiX[/eluser]
Code:
$is_logged_in = $this->session->userdata('is_logged_in');

            //if its not set and if not true, redirect to public pages
            if(!isset($is_logged_in) || $is_logged_in !== TRUE)
            {
                redirect('web_public/index');
                die();
            }
You might want to reread the session user guide on what the class will return if a session variable does NOT exist. Your code is checking to see if the variable is set, which it always will be because the function returns boolean FALSE if it doesn't exist.


Messages In This Thread
Session Class -> sess_destroy not removing session - by El Forum - 10-25-2012, 12:35 PM
Session Class -> sess_destroy not removing session - by El Forum - 10-25-2012, 12:56 PM
Session Class -> sess_destroy not removing session - by El Forum - 10-25-2012, 01:07 PM
Session Class -> sess_destroy not removing session - by El Forum - 10-25-2012, 01:14 PM
Session Class -> sess_destroy not removing session - by El Forum - 10-31-2012, 08:03 AM
Session Class -> sess_destroy not removing session - by El Forum - 10-31-2012, 12:10 PM
Session Class -> sess_destroy not removing session - by El Forum - 06-10-2013, 06:06 AM
Session Class -> sess_destroy not removing session - by El Forum - 06-10-2013, 07:36 AM
Session Class -> sess_destroy not removing session - by El Forum - 06-12-2013, 09:42 AM
Session Class -> sess_destroy not removing session - by El Forum - 06-12-2013, 09:45 AM
Session Class -> sess_destroy not removing session - by El Forum - 06-12-2013, 10:59 AM
Session Class -> sess_destroy not removing session - by El Forum - 06-12-2013, 11:04 AM



Theme © iAndrew 2016 - Forum software by © MyBB