使用电子邮件,而不是用户名的CakePHP的2.0认证(Cakephp 2.0 Authentica

2019-06-23 19:52发布

在我看来,我有:

<?php
echo $this->Form->create('User', array("controller" => "Users", "action" => "login", "method" => "post"));
echo $this->Form->input('User.email', array("label" => false));
echo $this->Form->input('User.password', array("label" => false, 'class' => 'password-input'));
echo $this->Form->end(); ?>

在我的AppController:

public $components = array(
        'Session',
        'Auth'
    );

    function beforeFilter(){
        $this->Auth->fields = array(
            'username' => 'email',
            'password' => 'password'
        );
    }

在我的UsersController:

function beforeFilter(){
        $this->Auth->allow('sign_up', 'login', 'logout', 'forgot_password');
        return parent::beforeFilter();
    }
public function login() {
        if ($this->Auth->login()) {
            $this->Session->setFlash(__('Successfully logged in'), 'default', array('class' => 'success'));
            $this->redirect($this->Auth->redirect());
        } else {
            if (!empty($this->request->data)) {
                $this->Session->setFlash(__('Username or password is incorrect'), 'default', array('class' => 'notice'));
            }
        }
    }

但是登录不工作,我缺少什么?

谢谢。

Answer 1:

我相信问题是:

function beforeFilter(){
    $this->Auth->fields = array(
        'username' => 'email',
        'password' => 'password'
    );
}

这是自定义登录领域是如何在CakePHP的1.3规定。 CakePHP的2.0,而不是要求您在指定这些领域的public $components = array(...); 。 该1.3 API显示验证有$字段属性,但2.0 API显示,不再是$ Fields属性。 所以,你必须:

public $components = array(
    'Session',
    'Auth' => array(
        'authenticate' => array(
            'Form' => array(
                'fields' => array('username' => 'email')
            )
        )
    )
);

:更多信息可以在这里找到http://book.cakephp.org/2.0/en/core-libraries/components/authentication.html#configuring-authentication-handlers

请告诉我它是如何工作!



Answer 2:

我的问题最终解决方案。 谢谢。

我有一个的usermodel问题,我写这篇文章:

'Auth' => array(
         'userModel' => 'Member'
      )

而不是这样的:

'Auth' => array(
    'authenticate' => array(
        'Form' => array(
            'userModel' => 'Member'
        )
    )
)


文章来源: Cakephp 2.0 Authentication using email instead of username