0

所以我的问题是,每当我使用 cakephp 中的 Auth 登录该站点并关闭它时,它仍然会将我带到该站点的索引页面。我真的不知道为什么 cakephp 会这样做,即使我关闭了桌面上的所有浏览器并且当我登录到该站点时,它仍然会将我带到应该是登录页面的索引页面。

我试着做这个网站cakephp-cookie-lifteime 但仍然没有任何反应

4

2 回答 2

1

Yes, in cakephp when you the close browser the session does not clear. You can update the following code in core.php file in app/config folder.

Configure::write('Session', array(
    'cookie' => 'my_app',
    'cookieTimeout' => 0,
    'checkAgent' => false,
    'timeout' => 60 //1 hr
));

It may take some time to take effect on the local server. Please add this code and check in server and other pc.

于 2013-10-15T16:22:08.633 回答
1

这不是 cake php 或您的服务器的问题。模型浏览器在浏览器关闭后不会破坏会话。

于 2013-06-19T08:36:41.610 回答