Welcome Guest, Not a member yet? Register   Sign In
Session / Login help
#9

[eluser]InsiteFX[/eluser]
Code:
class Profile extends CI_Controller {

    
    // this is wrong and your big ERROR! Should not be Profile()
    // Should be function __construct()
    // And since you are not setting anything you do not even need this method!
    function __construct()
    {
        parent::__construct();
    }
  
    
    public function index()
    {
        $this->login();
    }
        
    public function login()
     {
        // how does this know which email address to retrive?
        $email = $this->Login_Model->getEmail();
        if(strcmp($this->session->unset_userdata('user_email'),$email)!=0)
            redirect(base_url(). 'User/login');
        else
           echo 'Logged in';
        
      
                    
        }//login

Your code that you are showing doe's not really make any since!

@stefan Hueg,
And how do you figure I have missed directed him?

If you do not unset the session userdata it will still exist, because there is no telling when the garbage collector will clear out the session!

Look at your session table and tell me how many sessions you have left in it...



Messages In This Thread
Session / Login help - by El Forum - 04-30-2012, 03:13 PM
Session / Login help - by El Forum - 04-30-2012, 03:14 PM
Session / Login help - by El Forum - 04-30-2012, 03:18 PM
Session / Login help - by El Forum - 04-30-2012, 03:23 PM
Session / Login help - by El Forum - 04-30-2012, 03:30 PM
Session / Login help - by El Forum - 04-30-2012, 06:18 PM
Session / Login help - by El Forum - 04-30-2012, 06:19 PM
Session / Login help - by El Forum - 04-30-2012, 06:27 PM
Session / Login help - by El Forum - 04-30-2012, 07:38 PM
Session / Login help - by El Forum - 04-30-2012, 10:18 PM
Session / Login help - by El Forum - 04-30-2012, 10:19 PM
Session / Login help - by El Forum - 04-30-2012, 10:20 PM
Session / Login help - by El Forum - 04-30-2012, 10:23 PM
Session / Login help - by El Forum - 04-30-2012, 11:18 PM
Session / Login help - by El Forum - 05-01-2012, 02:55 AM



Theme © iAndrew 2016 - Forum software by © MyBB