会话变量在本地服务器上有效,但在托管服务器上无效

发布于 2024-11-24 15:51:44 字数 173 浏览 1 评论 0原文

我正在开发一个简单的 php/mysql 讨论论坛。该语句

<?php print $_SESSION['username']; ?> 

在我的本地计算机上产生了所需的结果,但是当我上传代码以实时测试论坛时,会话变量的值不再显示。可能是什么原因造成的?

I am developing a simple php/mysql discussion forum. The statement

<?php print $_SESSION['username']; ?> 

produces the desired results on my local machine, but when I uploaded the code to test the forum live, the value of the session variable no longer displayed. What could be causing this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

不如归去 2024-12-01 15:51:44

可能导致这种情况的一件事是,如果实时 Web 服务器位于使用默认 php 会话处理的负载平衡环境中。默认情况下,php 将会话数据存储在服务器上的平面文件中,因此如果用户在 webheads 之间跳转,他们将丢失会话数据。

在这种情况下,您将需要使用数据库定义自己的会话处理程序

one thing that can cause this is if the live web server is on a load balanced environment using default php session handling. By default php stores session data in a flat file on ther server so if the user is jumping around webheads they will lose session data.

in that case you will need to define your own session handler using a db

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