Kohana 3.2 Auth ORM: I can't seem to stay logged in with the "remember me" option set

1.1k Views Asked by At

I'm having a problem with Auth / ORM and auto_login. I have the lifetime set to two weeks, but I get logged out after about an hour, regardless of whether the browser is closed or not. In fact, it's time-based, since the session does stay, even over the closing of the browser.

I've got things set up like this (and any help would be appreciated!!!):

bootstrap.php

Cookie::$salt = 'some random string here';

config/auth.php

<?php defined('SYSPATH') or die('No direct access allowed.');

return array(

'driver'       => 'ORM',
'hash_method'  => 'sha256',
'hash_key'     => '<another random string>',
'lifetime'     => 1209600, // TWO WEEKS, NO?
'session_type' => Session::$default,
'session_key'  => 'auth_user',

// Username/password combinations for the Auth File driver
'users' => array(
),

);

classes/controller/auth.php

public function action_login() { // Check to make sure the user isn't already logged in... if (Auth::instance()->logged_in() || Auth::instance()->auto_login()) {
$this->request->redirect($this->request->referrer()); }

$referrer = base64_encode($this->request->referrer());

$post = $this->request->post();
if (!empty($post))
{
    $remember = isset($post['remember']); // <-- This value has been verified
    Auth::instance()->login(Arr::get($post, 'email'), Arr::get($post, 'password'), $remember);

    if (Auth::instance()->logged_in())
    {
        $this->request->redirect(base64_decode(Arr::get($post, 'referrer')));
    }
    else
    {
        $this->view->set('error', true);
    }

    if (isset($post['referrer']))
    {
        $referrer = Arr::get($post, 'referrer');
    }
}

$this->view = Template::factory('auth/login');
$this->view->set('referrer', $referrer);

} 

classes/controller/website.php

class Controller_Website extends Controller { 
    public function before()
    {
        $parent_before = parent::before();

        if (Auth::instance()->logged_in() || Auth::instance()->auto_login()) //<-- isn't this where the magic is supposed to be happening?!?!
        {
            $this->user = Auth::instance()->get_user();
        }
        elseif ($this->require_auth && !in_array($this->request->action(), $this->auth_allow_actions))
        {
            $this->request->redirect('/auth/login');
        }

        return $parent_before;
    }
}
1

There are 1 best solutions below

0
On

Try setting $remember like this:

$remember = array_key_exists('remember', $this->request->post()) ? (bool) $this->request->post('remember') : FALSE;