mkdir() 不改变目录

发布于 2024-11-07 17:53:49 字数 234 浏览 4 评论 0原文

我正在使用以下代码创建一个目录...

mkdir($basedir.$plan_name, 0777, 1);

它创建了,但问题是 777 权限没有坚持

有什么想法吗?

我的目录结构是这样的...

/pdf/customs (由 wwwuser:user 拥有) /pdf/customs/417/文件夹名称(由代码创建,修改为755)

I'm using the following code to create a directory...

mkdir($basedir.$plan_name, 0777, 1);

It creates, but the issue is that the 777 permissions aren't sticking

Any ideas?

My directory structure is this....

/pdf/customs (owned by wwwuser:user)
/pdf/customs/417/Folder Name (created by code, modded to 755)

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

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

发布评论

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

评论(3

北方的巷 2024-11-14 17:53:49

您的umask 可能是022。有关更多信息,请阅读 man 2 mkdir。创建目录后必须使用chmod将权限设置为0777

编辑:正如其他人所建议的,您可以更改您的umask。但是,如果出现问题,umask 将保留下来,并且您的网络服务器或 fastcgi 守护程序(或其他)将开始创建世界可写的文件和目录。这是个坏消息。

Your umask is probably 022. For more information, read man 2 mkdir. You must use chmod after you make the directory to set the permissions to 0777.

Edit: As others have suggested, you can change your umask instead. However, if something goes wrong, the umask will stick around and your webserver or fastcgi daemon (or whatever) will start creating world-writable files and directories. That's bad news.

那片花海 2024-11-14 17:53:49

您检查过您的 umask 吗?

目录权限将被修改。例如,如果您的 umask 值为 002,则生成的权限将为 0775

Did you check your umask ?

The directory permissions will be modified by that. For example if your umask value is 002 the resulting permissions will be 0775.

赠意 2024-11-14 17:53:49

来自文档

请注意,您可能想要指定
众数为八进制数,其中
意味着它应该有一个前导零。
该模式也由
当前的 umask,您可以更改
使用 umask()。

你的 umask 是什么?

From the documentation:

Note that you probably want to specify
the mode as an octal number, which
means it should have a leading zero.
The mode is also modified by the
current umask, which you can change
using umask().

What is your umask?

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