0

我无法在 cakephp 中使用 Auth 登录。stackoverflow 上有一些与此类似的帖子,但是这些答案似乎对我不起作用。

我创建了一个类似的注册表单,它可以与 Auth 一起使用,但需要登录,$this->Auth->login(); 在 UsersController 中返回 false。

Auth 使用正确的 userModel,并且用户名字段更改为电子邮件。(注意:当我到处使用用户名而不是电子邮件时,它也不起作用)。该数据库有一个表用户,其中包含一个电子邮件和一个密码字段。密码字段使用以下方法进行散列/加密:AuthComponent::password()

// 应用控制器

class AppController extends Controller {

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

    public function beforeFilter() {
        $this->Auth->userModel = 'User';
        $this->Auth->fields = array('username' => 'email', 'password' => 'password');
        $this->Auth->loginAction = array('controller' => 'users', 'action' => 'login');
        $this->Auth->loginRedirect = array('controller' => 'users', 'action' => 'index');
    }
}

// 用户控制器

class UsersController extends AppController{
  var $name = 'Users';
  var $helpers = array('Html', 'Form');

  function beforeFilter()
  {       
    parent::beforeFilter();
    // tell Auth not to check authentication when doing the 'register' action
    $this->Auth->allow('register');
  }

  function login(){
      if (isset($this->data['User'])) {
        $this->Auth->login();
        debug('tried');
      }
  }

// 登录.ctp

<?php
    echo $this->Form->create('User',array('action'=>'login'));
    echo $this->Form->input('email');
    echo $this->Form->input('password');
    echo $this->Form->end('Login');  

?>

// 用户.php

<?php
class User extends AppModel{

    var $name = 'User';
}
?>

我只使用 cakephp 几天,所以这可能是一个简单的错误,但是我现在正在搜索它几个小时,但我仍然没有找到它。

4

1 回答 1

1

设置属性喜欢$this->Auth->userModel并且$this->Auth->fields不会在 2.x 中对您有任何好处。您需要使用$this->Auth->authenticate属性来指定 userModel 和 fields 选项。阅读有关 Auth 配置的2.x 手册以获取更多信息。

于 2013-04-18T06:13:16.067 回答