刷新或双击链接太快会导致 CakePHP 应用程序使用 Auth 组件将用户注销
我注意到,当我连续两次刷新页面或双击链接时,用户会自动注销。我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能有
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.