刷新或双击链接太快会导致 CakePHP 应用程序使用 Auth 组件将用户注销

发布于 2024-08-20 18:37:01 字数 99 浏览 5 评论 0原文

我注意到,当我连续两次刷新页面或双击链接时,用户会自动注销。我正在使用 cakephp 1.2 和 Auth 组件。我对 CakePHP 没有太多经验,有什么想法可能会导致这种情况吗?

I've noticed that when I refresh the page twice in a row or double click on a link, the user is automatically logged out. I'm using cakephp 1.2 and the Auth component. I don't have a lot of experience with CakePHP, any ideas what could cause this?

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

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

发布评论

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

评论(1

执妄 2024-08-27 18:37:01

您可能有 Configure::write('Security.level' ) 设置为'high'。在该设置中,每个请求都会重新生成会话 ID。当您使用具有旧会话 ID 的同一个旧 Cookie 第二次刷新时,它将不再有效。

You probably have Configure::write('Security.level') set to 'high'. In that setting, the Session ID is being regenerated on each request. When you refresh the second time with the same old Cookie that has an old Session ID, it won't be valid anymore.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文