PHP session_start 失败

发布于 2024-07-15 18:15:56 字数 427 浏览 5 评论 0原文

我正在尝试在我的网站的标题页面中启动会话。 但似乎可能存在某种错误,因为它失败并出现以下错误:

Warning: session_start() [function.session-start]: open(\xampp\tmp\sess_a7430aab4dd08d5fc0d511f781f41fe5, O_RDWR) failed: No such file or directory (2) in D:\Development\PHP\tt\Include\header.php on line 3

我正在使用 xampp 的默认设置,一切都是开箱即用的。 由于某种原因,它无法打开该文件。 但是,当我转到其中包含会话文件的目录时,文件就在那里,它们只是空的。 这是一个错误吗? 或者我做错了什么?

PHP 版本 5.2.8

I'm trying to start the session in a header page in my webiste. But it seems there might be some sort of bug because it fails with the following error:

Warning: session_start() [function.session-start]: open(\xampp\tmp\sess_a7430aab4dd08d5fc0d511f781f41fe5, O_RDWR) failed: No such file or directory (2) in D:\Development\PHP\tt\Include\header.php on line 3

I'm using the default settings for xampp, everything is straight out of the box. For some reason its failing to open the file. however when i go to the directory with the session files in it, the files are there, they are just empty. Is this a bug? or am I doing something wrong?

php version 5.2.8

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

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

发布评论

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

评论(3

月下凄凉 2024-07-22 18:15:56

首先停止 Xampp 服务器。

session.save_path = "\xampp\tmp"

并将其更改为如下所示

session.save_path = "C:\xampp\tmp"

重新启动 Xampp 服务器。

现在您的会话应该按预期工作了。

First stop the Xampp Server.

session.save_path = "\xampp\tmp"

and change it to look like this

session.save_path = "C:\xampp\tmp"

Restart the Xampp Server.

That’s it now your session should work as expected.

爱你是孤单的心事 2024-07-22 18:15:56

这意味着您没有正确的权限来读取或写入临时目录中的文件。

如果您在 Linux 上,则执行此操作

sudo chmod -R 755 \xampp\tmp //or should it be 775

在 Windows 上,以管理员身份执行此操作

attrib -r -a C:\xampp\tmp /S

This means that you don't have the correct permissions to either read or write the files in the temp directory.

If you on linux then do this

sudo chmod -R 755 \xampp\tmp //or should it be 775

On windows do this as an administrator

attrib -r -a C:\xampp\tmp /S
嘿咻 2024-07-22 18:15:56

正如 Selular88 提到的,添加路径可以解决这个问题。 您还可以使用检查路径

// This will output your current path.
echo session_save_path() ;

As Selular88 mentioned, Adding the path works and fix this issue. You can also check the path using

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