Cakephp 2.5.2 Auth始终返回false

问题描述:

Auth返回false。散列的密码与数据库中的散列密码匹配,但仍返回false。Cakephp 2.5.2 Auth始终返回false

这里是模型:

App::uses('AppModel', 'Model'); 

    class User extends AppModel { 

    public $validate = array(
    'username' => array(
     'notEmpty' => array(
      'rule' => array('notEmpty'), 
      //'message' => 'Your custom message here', 
      //'allowEmpty' => false, 
      //'required' => false, 
      //'last' => false, // Stop validation after this rule 
      //'on' => 'create', // Limit validation to 'create' or 'update' operations 
     ), 
     ), 
     'password' => array(
      'notEmpty' => array(
      'rule' => array('notEmpty'), 
      //'message' => 'Your custom message here', 
      //'allowEmpty' => false, 
      //'required' => false, 
      //'last' => false, // Stop validation after this rule 
      //'on' => 'create', // Limit validation to 'create' or 'update' operations 
     ), 
     ), 
     ); 
     public function beforeSave($options = array()) { 
    if (isset($this->data[$this->alias]['password'])) { 

     $this->data[$this->alias]['password'] =AuthComponent::password($this->data[$this->alias]['password']); 

     ; 
    } 
    return true; 



} 
     } 

这里是AppController中:

 class AppController extends Controller { 


     public $components = array(
     'Session', 
     'Auth' => array(
     'authenticate' => array(
      'Form' => array(

      ) 
     ), 
     'loginAction'=>array(
      'controller'=>'users', 
      'action'=>'login' 
     ), 
     'loginRedirect' => array(
      'controller' => 'references', 
      'action' => 'admin_index' 
     ), 
     'logoutRedirect' => array(
      'controller' => 'home', 
      'action' => 'index', 
      'home' 
     ) 

    ) 
    ); 
    public function beforeFilter() { 
    $this->Auth->allow('index', 'view'); 
    } 

    } 

这里是UsersController:

  public function login(){ 

     var_dump($this->Auth->login());die; 
     if ($this->request->is('post')) { 
     if ($this->Auth->login()) { 

      return $this->redirect(array('controller'=>'references', 'action'=>'admin_index')); 

     } 

     $this->Session->setFlash(__('Invalid username or password, try again')); 
     } 
     } 

和视图:

  <div class="users form"> 
     <?php echo $this->Session->flash('auth'); ?> 
     <?php echo $this->Form->create('User',array('action'=>'login')); ?> 
      <fieldset> 
     <legend> 
     <?php echo __('Please enter your username and password'); ?> 
     </legend> 
     <?php echo $this->Form->input('username'); 
     echo $this->Form->input('password'); 
     ?> 
     </fieldset> 
     <?php echo $this->Form->end(__('Login')); ?> 
     </div> 

我已经尝试过使用BlowFish,但它不工作,所以我创建用户时切换到Auth默认散列和哈希,然后登录匹配,因此散列工作正常。我没有得到什么问题,所以请帮助。

半小时后我再次尝试,现在它的工作。谁知道问题是什么。无论如何,如果您在上面的代码中发现任何问题,请阅读并发布答案。谢谢!