如何杀死cakephp中的会话?

发布于 2024-10-17 16:28:43 字数 78 浏览 3 评论 0原文

我正在开发登录模块。在注销模块中,m 销毁会话。 注销后,如果我单击后退按钮,我将获取用户信息。 请帮我修复这个错误。

谢谢

m working on loginmodule. In logout module, m destroying the session.
After logging out, If i click back button m getting the user information.
Please, help me to fix this bug.

Thanks

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

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

发布评论

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

评论(4

凉薄对峙 2024-10-24 16:28:43

$this->Auth->logout();
$this->Session->destroy();

这不是为你做的吗?

$this->Auth->logout();
$this->Session->destroy();

Is that not doing it for you?

み格子的夏天 2024-10-24 16:28:43

原因是您的浏览器已缓存该页面,因此单击“返回”将始终显示用户信息。对此你无能为力。

这可能会有所帮助 http://cakephp.1045679.n5.nabble.com/After-logout-browser-back-button-shows-all-visited-page-td1321477.html

The reason being is that your browser has cached the page, so clicking back would always show the user information. There is not much you can do about this.

this might help http://cakephp.1045679.n5.nabble.com/After-logout-browser-back-button-shows-all-visited-page-td1321477.html

悟红尘 2024-10-24 16:28:43

你好,
如果 session->destroy 不起作用,请尝试使用 Session->del('session name');以及所有会话 NMA

HI,
If session->destroy does not work the try with Session->del('session name'); and for all session nma

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