gpt4 book ai didi

cakephp - 身份验证注销在 CakePHP 2.x 中不起作用

转载 作者:行者123 更新时间:2023-12-02 18:26:21 26 4
gpt4 key购买 nike

  1. 当我从一个用户帐户 session 登录时,然后在同一浏览器上打开下一个选项卡并输入登录网址,它会将我带到登录页面。但实际上它应该重定向到“仪表板”页面(在我的情况下) 。它无法重定向到我的 Auth 中提到的 loginRedirect(仪表板)页面。
  2. 当我注销时,根据我的代码 session ,cookie 和缓存将被删除。但它不会重定向到 logoutRedirect 页面。

我的代码:

应用 Controller

public $components = array(
'Session', 'RequestHandler', 'Email', 'Cookie',
'Auth' => array(
'authenticate' => array(
'Form' => array(
'fields' => array(
'username' => 'email',
'password' => 'password')
)
),
'loginRedirect' => array(
'controller' => 'users',
'action' => 'login'
),
'logoutRedirect' => array(
'controller' => 'users',
'action' => 'login'
)
)
);

用户 Controller

登录操作:

public function login() {
$this->layout = 'admin';
if ($this->Session->check('Auth.User')) {
$this->redirect(array('controller' => 'users', 'action' => 'dashboard'));
}
if (isset($this->data['User'])) {
if (!empty($this->data['User']['email']) && !empty($this->data['User']['password'])) {
if ($this->Auth->login()) {
$this->redirect(array('controller' => 'users', 'action' => 'dashboard'));
} else {
$this->set('error', "Email or Password mismatch.");
}
}
} else {
if ($this->Auth->loggedIn()) {
$this->redirect(array('controller' => 'users', 'action' => 'dashboard'));
}
}
}

注销操作:

public function logout() {      
header('pragma: no-cache');
header('Cache-Control: no-cache, must-revalidate');
$this->response->disableCache();
$this->Session->delete('Auth.User');
$this->Session->delete('User');
$this->Session->destroy();
$this->Cookie->destroy();
return $this->redirect($this->Auth->logout());
}

此代码在“本地服务器”中运行良好,但在生产服务器中不起作用。

最佳答案

您的redirect语句前面应该有return,以便代码执行将在那里停止。例如:

return $this->redirect(array('controller' => 'users', 'action' => 'dashboard'));

关于cakephp - 身份验证注销在 CakePHP 2.x 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33776887/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com