0

我一直在尝试让我的网站使用 cakephp 2.6.3 auth 组件来工作一周。

面临的问题是,每当我输入任何虚假的用户 ID/密码组合时,登录函数都会返回 true。我已经阅读了所有可以阅读和观看的教程,但我似乎无法让它工作。

我是使用 Cake 的新手,非常感谢您的帮助。提前致谢。

下面是我的 appController。

class AppController extends Controller {
public $components = array(
'DebugKit.Toolbar', 
'Session',
'Auth' => array(
    'loginAction' => array('controller' => 'users', 'action' => 'login'),
    'loginRedirect' => array('controller' => 'users', 'action' => 'index'),
    'logoutRedirect' => array('controller' => 'users', 'action' => 'login'),

    'Authenticate' => array(
        'Form' => array(
            'fields' => array('username' => 'student_id', 'password' => 'password')
         )
    )

    )
);


public function isAuthorized($user){
return true;
}

public function beforeFilter(){
    $this->Auth->allow('login');




    }

}

用户控制器:

public function login(){

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

                $this->redirect($this->Auth->redirectUrl());   
            }

            else{

               $this->Session->setFlash('Invalid User ID or password');
            }
        }
}

用户型号:

class User extends AppModel{
public $name = 'User';

public $validate = array(
'student_id' => array(
'Please enter your User ID' => array(
'rule' => 'notEmpty',
'message' => 'Please enter your User ID.'
)
),
    'first_name' => array(
    'Enter First Name' => array(
    'rule' => 'notEmpty',
    'Message' => 'Please enter first name.')),

    'last_name' => array(
    'Enter Last Name' => array(
    'rule' => 'notEmpty',
    'Message' => 'Please enter last name.')),

    'email' => array(
    'Valid email' => array(
    'rule' => array ('email'),
    'Message' => 'Please enter a valid email.')),

    'password' => array(
    'Not empty' => array(
    'rule' => 'notEmpty',
    'Message' => 'Please enter your password.'),

    'Match passwords' => array(
    'rule' => 'matchPasswords',
    'Message' => 'Your passwords donot match')),

    'password_confirmation' => array(
    'Not empty' => array(
    'rule' => 'notEmpty',
    'Message' => 'Please confirm your password.'))



);

public function matchPasswords($data){

if($data['password'] == $this->data['User']['password_confirmation']){
return true;
}
$this->invalidate('password_confirmation', 'Your passwords do not match');
    return false;
}


public function beforeSave($options = array()){
if(isset($this->data['User']['password'])){
$this->data['User']['password'] = AuthComponent::password($this->data['User']['password']);
}
return true;
}

}
4

2 回答 2

0

摆脱$this->Auth->allow('login');你的beforeFilter()方法。

于 2015-05-30T16:05:54.097 回答