我正在尝试通过简单的登录表单在网站主页上实现用户登录。我为用户创建了一个简单的表单,其中用户名和密码字段使用/users/login
. users_controller/login
功能很简单:
$this->set('title_for_layout', __('Log in', true));
if (!empty($this->data)) {
if (!$this->Auth->login($this->data)) {
$this->Session->setFlash(__('Login Invalid.', true));
$this->redirect("/");
} else {
$this->redirect($this->Auth->redirect());
}
}
这在使用管理员用户登录时有效。但是,如果我尝试使用注册用户登录,则会失败。我尝试更改Auth->loginAction
为/users/promoted
并没有看到任何结果,除了无法访问/admin/
登录,这很好,因为管理员也可以通过主页登录......在这一点上非常难过,非常感谢帮助!
谢谢,
迈克尔