对于 Ubuntu 上的 Windows 共享,PHP is_file 返回 false(错误)

发布于 2024-08-25 23:18:49 字数 296 浏览 2 评论 0原文

Ubuntu 服务器,PHP 5.3,通过 Samba 连接到 Windows 服务器共享。

我正在使用 file_exists() 来检查 Windows 计算机上文件的可用性。尽管文件路径确实存在,但它返回 false。同时,完全相同的文件路径上的 file_get_contents() 工作正常。

我想知道这是否是权限问题,因为我在配置 Windows 共享上的文件权限时遇到问题(它说我无权更改它们的权限)。当我通过Nautilus查看权限时,它说用户和组都是root,拥有755权限。我想将组更改为 www-data,但似乎无法做到。

Ubuntu server, PHP 5.3, connected via Samba to Windows server share.

I am using file_exists() to check for availability of file on Windows machine. It returns false, although the filepath does exist. Meanwhile, file_get_contents() on the exact same filepath works fine.

I'm wondering if it's a permission issue, since I'm having trouble configuring permissions of the files on the Windows share (it says I don't have permission to change permissions on them). When I look at the permissions through Nautilus, it says the user and group are both root, with 755 rights. I'd like to change the group to www-data, but can't seem to do it.

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

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

发布评论

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

评论(1

万劫不复 2024-09-01 23:18:49

它可能是目录分隔符。尝试 preg_replace('%(\\|\)%', '/', $path)

It could be directory seperators. Try preg_replace('%(\\|\)%', '/', $path)

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