如何在关闭浏览器时删除会话?
当用户关闭 Magento 中的浏览器时,如何销毁 Magento 会话?
我尝试关闭并重新打开浏览器,但我仍然保持登录状态。看起来 Magento 会在一定时间内保持登录状态。我在配置下更改了“cookie生存期”,但它不起作用。
我可以在index.php中使用session_set_cookie_params()
,但我想知道是否可以在不直接接触代码的情况下修复它。
How do I destroy Magento sessions when a user closes his/her browser in Magento?
I tried to close and reopen my browser and I remain logged in. It looks like Magento persists the login status for certain amount of time. I changed 'cookie lifetime' under configuration, but it does not work.
I could use session_set_cookie_params()
in index.php, but I would like to know if I can fix it without touching code directly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,cookie 生存期“0”表示“浏览器退出时”。我不确定 Magento 是否会改变这种行为,但值得一试。
Normally a cookie lifetime of "0" means "when the browser exits". I'm not sure if Magento changes the behaviour but it's worth a try.