我无法使用 AuthComponent 登录任何用户。user表的名字是users,有一些重要的字段如user_id,user_password,password字段没有散列。
这是我的 AppController
class AppController extends Controller {
public $components = array(
'Session',
'Auth' => array(
'loginRedirect' => array('controller' => 'users', 'action' => 'index'),
'logoutRedirect' => array('controller' => 'users', 'action' => 'home'),
'authError' => 'You cannot view this page',
'authorize' => array('controller')
)
);
public function isAuthorize($user) {
return true;
}
public function beforeFilter() {
$this->Auth->allow('home');
}
}
这是我的用户控制器
class UsersController extends AppController {
public function login() {
if ($this->request->is('post')) {
if ($this->Auth->login()) {
$this->redirect($this->Auth->redirect());
} else {
$this->Session->setFlash('Cannot login in');
}
}
}
}
这是我的用户模型。
class User extends AppModel {
public $name = 'User';
public $primaryKey = 'user_id';
public $belongsTo = 'Group';
}
这是我的观点
<h2>Login</h2>
<?php
echo $this->Form->create();
echo $this->Form->input('user_id', array('label' => 'User ID', 'type' => 'text'));
echo $this->Form->input('user_password', array('label' => 'Password', 'type' => 'password'));
echo $this->Form->end('Login');
?>
当我输入更正的 user_id 和密码,然后按下登录按钮时,我从 UsersController 收到了我无法登录的消息。这里出了什么问题???
另外,我真的不明白 AuthComponent:login() 的概念,它是如何在数据库中检查 user_id 和密码的,它是如何知道哪个字段包含 user_id,哪个字段包含密码???
请帮忙。谢谢。孔塔