Zend Framework - Zend_Session 奇怪的行为
我刚刚按照网站上的官方文档学习 Zend Framework。
但我被 Zend_Session 的一个奇怪行为所困扰:当用户通过身份验证时,浏览应用程序页面 - 一切都很好,但是如果他快速刷新浏览器页面(按 F5 或工具栏中的按钮),或者即使某些 AJAX php 文件(使用会话)被多次请求, - 会话突然过期(用户未经身份验证,但 cookie 过期日期相同)。
不过,我没有在我的应用程序中使用 ACL 和 MVC 结构。
所以它可以工作,而且非常简单,但是当页面刷新很快时就会失败。我也不知道为什么,但会在 /home/user/sessions/
中为用户访问的每个页面创建一个单独的 cookie 文件。
这里有一个类似的问题 zend 会话刷新多次后就会过期 但提供的解决方案对我没有帮助:(
I'm just learning Zend Framework following it's official documentation at the website.
But I'm stucked with a strange behavior of Zend_Session: when user is authenticated, surfing the application pages - everything is ok but if he refresh the browser page quickly (pressing F5 or button in the toolbar) or even if some AJAX php file (that uses session) is requested multiple times, - the session suddenly expires (user is unauthenticated, however cookies expire dates are the same).
Though, I'm not using ACL and MVC structure in my application.
So it works and it is very simple but fails when page is refreshed quickly. Also I don't know why but a separate cookie file is created in /home/user/sessions/
for each page user has visited.
There is a similiar question here
zend session expires when refreshed many times
but the solution provided doesn't help me :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的配置中,您应该设置如下内容:
这样就可以了。
In you config, you should set up something like this:
That should do it.