在记录用户时,Auth :: instance返回false

时间:2013-12-08 13:46:41

标签: php kohana kohana-orm kohana-auth

我正在创建一个新用户,然后尝试将其登录,用户将保存在数据库中,并且还会保存他们的角色。虽然我从未点击重定向来说他们已经登录。我已经调试了Auth :: Instance->登录并且我回来了FALSE

public function action_index()
{

    $view = View::factory('index/home');

    if( Request::current()->post() ):
        $post = $_POST;

        try {
            $user = ORM::factory('User');

            $user->username = $post['username'];
            $user->password = $post["password"];
            $user->email = $post["email"];
            $user->logins = +1;
            $user->save();


            if ($user->saved() ):
                $user->add('roles', ORM::factory('Role')->where('name', '=', 'login')->find());


                $logged_in = Auth::instance()->login($post['username'], $post['password']); 

                echo Debug::vars($logged_in); exit;                 

                if ($logged_in):
                    HTTP::redirect("/dashboard/");  
                endif;

            endif;  

        } catch (Exception $e) {
            echo Debug::vars($e); exit;
        }
    endif;

    $index_page = $view->render();  
    $this->response->body($index_page);         
}

配置

return array(

'driver'       => 'ORM',
'hash_method'  => 'sha256',
'hash_key'     => 'bernardo',
'lifetime'     => 1209600,
'session_type' => Session::$default,
'session_key'  => 'auth_user',

);

散列时密码出错了吗?

1 个答案:

答案 0 :(得分:0)

您将密码以明文形式存储在数据库中(除非您应用某种过滤器)。请尝试以下方法:

$user->password = Auth::instance()->hash($post["password"]);

这将确保在存储之前对密码进行哈希处理。 Auth会在将密码与数据库中的值进行比较之前对密码进行哈希处理。