会话过期后 Cakephp 重定向

发布于 2024-09-11 19:00:37 字数 43 浏览 2 评论 0原文

我在一个网站中使用 CakePHP,我想知道如何在会话过期时自动重定向?

I'm using CakePHP in one website and I was wondering how can I automagically redirect when the session has expired?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七七 2024-09-18 19:00:37

会话过期相当于用户退出您的应用程序。您可以设置变量

$this->Auth->logoutRedirect = array('component'=>'YourComponent','action'=>'YourAction');

,这将获得类似的结果。您需要在 AppController 的 beforeFilter() 中设置它。

如果您想在会话过期后立即重定向用户,则需要滚动一些自定义 JavaScript 来实现此效果。您可以首先确定会话到期之前的大致秒数,将其传递给 javascript setTimeout() 调用并触发一个强制用户注销的函数。这种方法有一些注意事项,但它也同样有效。

The session expiration is equivalent to the user logging out of your app. You can set variable

$this->Auth->logoutRedirect = array('component'=>'YourComponent','action'=>'YourAction');

and this will achieve similar results. You want set this in the beforeFilter() of your AppController.

If you want to redirect the user the very second the session expires, you will need to roll some custom javascript to achieve this effect. You could start with determining the approximate number of seconds until the session expires, passing it to a javascript setTimeout() call and firing a function which forces the user to logout. There are some caveats to this approach, but it would work just as well.

山川志 2024-09-18 19:00:37

使用您的组件($components),您可以选择登录细节和lougout,例如会话关闭时的重定向页面。

public $components = array(
    'Session'=>array(
        'timeout' => 620
    ),'Auth' => array(
        'loginRedirect' => array(
            'controller' => 'pages',
            'action' => 'display',
            'home'
        ),
        'logoutRedirect' => array(
            'controller' => 'users',
            'action' => 'login'
        ),
        'authenticate' => array(
            'Form' => array(
                'passwordHasher' => 'Blowfish'
            )
        )
    )
);

using your components ($components) you choose the login specifics details and lougout too such as the redirect page when the session close.

public $components = array(
    'Session'=>array(
        'timeout' => 620
    ),'Auth' => array(
        'loginRedirect' => array(
            'controller' => 'pages',
            'action' => 'display',
            'home'
        ),
        'logoutRedirect' => array(
            'controller' => 'users',
            'action' => 'login'
        ),
        'authenticate' => array(
            'Form' => array(
                'passwordHasher' => 'Blowfish'
            )
        )
    )
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文