php 会话变量 30 分钟后过期

发布于 2024-10-20 15:35:07 字数 108 浏览 2 评论 0原文

我有一个在 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 技术交流群。

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

发布评论

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

评论(2

雨巷深深 2024-10-27 15:35:07

在 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)

他是夢罘是命 2024-10-27 15:35:07

也许,你可以使用 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.

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