为什么magento总是退出会话
我在管理面板中将会话时间增加到 1 小时,但它仍然将我从授权页面中丢弃的大部分项目(在管理端/客户端)并将我重定向到登录页面。我面临的问题是什么?我正在使用 Enterprise edtion 1.9,我应该在管理端指定什么吗?
注意:
会话存储正在使用文件,我在我的服务器中看不到该目录的问题
I increased my session timing to 1 hour in admin panel, but still most of items it throws me away (both in admin side/client side) from the authorised pages and redirects me to login page. What is the problem that am facing? I am using Enterprise edtion 1.9 and is there anything should i specify in the admin side.
Note:
Session storage is using file and i could see no prob with that directory in my server
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查服务器上的日期、时间和时区。确保客户端计算机上的时区正确。
当时间“看起来正确”但实际上应用于错误的时区时,很容易遇到此类问题,从而导致错误的偏移转换......又名“我刚刚设置的会话 cookie 已经过期”。
Check the date, time, and time zone on the server. Make sure the time zone on your client computer is correct.
It is easy to encounter such problems when the time "looks right" but is actually applied against the wrong time zone, resulting in bad offset conversions ... aka "that session cookie I just set is already expired".
检查
gc.session-maxlifetime
的 php 设置。通常也需要增加。Check your php settings for
gc.session-maxlifetime
. That usually needs to be increased also.