php 会话变量 30 分钟后过期
我有一个在 LAMP 上运行的 php 应用程序。所有表单信息都需要存储在数据库中。当用户超过 30 分钟没有提交表单时,尝试稍后提交 php 会话变量就会过期。
我该如何解决这个问题?
I have a php application running on LAMP. All the form information needs to be stored in Database. When the user does not submit the form more than 30 min, tries to submit later the php session variables get expired.
How can I solve this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 php.ini 中将会话过期时间设置得更长(会话垃圾收集器)
,并将 cookie 生存期设置得更长(如果您使用 cookie 来存储会话 id)
set the session expiry longer (session garbage collector) in php.ini
and set the cookie lifetime longer (if you use cookies to store session id)
也许,你可以使用 hack;就像使用 Ajax post 来维持会话打开一样!?
我已经使用这种技术向用户显示提醒或问题“你闲着吗?”。
在后台,Ajax post 使用“session_start()”调用 PHP 脚本来维护会话。
Perhaps, you can use a hack; like using a Ajax post to maintain the session opened !?
I already used this technic to show to tue user a reminder or a question "Are you idle ?".
In the background the Ajax post call a PHP script with "session_start()" that maintain the session.