CakePHP Auth登录不正确

用户名

我正在尝试为我的用户创建一个简单的登录系统,但是我不知道为什么它无法登录,Auth-> login()方法由于某种原因总是返回FALSE(错误信息)。 。可能是带有密码哈希的内容。我有cakePHP 2.5.2。

这是我的问题的屏幕截图:问题

我在UsersController中的beforeSave()方法

public function beforeSave($options = array()) {
    $this->request->data['User']['password'] = Security::hash($this->request->data['User']['password']);
}

和login()方法:

function login() {
    if ($this->request->is('post')) {
        if ($this->Auth->login()) {
            $this->Session->setFlash(__('You\'ve successfully logged in.' . ' <b>' . $this->Session->read('User.login') . '</b>'), 'alert', array(
                'plugin' => 'BoostCake',
                'class' => 'alert-success'
            ), 'success');
            return $this->redirect($this->Auth->redirectUrl());
            ////  $this->redirect($this->Auth->redirectUrl());
        } else {
            // var_dump($this->Auth->user());
            $this->Session->setFlash(__('Sorry, the information you\'ve entered is incorrect.'), 'alert', array(
                'plugin' => 'BoostCake',
                'class' => 'alert-danger'
            ), 'danger');
        }
    }
}

这是Auth组件:

public $components = array(
        'Session',
        'Auth' => array(
            'loginRedirect' => array('controller' => 'pages', 'action' => 'home'),
            'logoutRedirect' => array('controller' => 'pages', 'action' => 'home'),
            'loginAction' => array('controller' => 'users', 'action' => 'login'),
            'authError' => 'You are not authorized to access this page.',

            'authenticate' => array(
                        'Form' => array(
                            'userModel'=>'User',
                            'fields' => array(
                                'username' => 'login',
                                'password'=>'password')
                        )
        ),
            'flash' => array(
                'element' => 'alert',
                'key' => 'auth',
                'params' => array(
                    'plugin' => 'BoostCake',
                    'class' => 'alert-danger'
                )
            ),'authorize'=>array('Controller'),
        )
    ,'DebugKit.Toolbar'
    );
用户名

是的,这是不正确的,我删除了所有内容,但仍然有效,但我不知道如何

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章