首先,永远不要将文件设置为 0777。永远不需要它。如果应用程序告诉您这样做,您应该重新考虑该应用程序的实施,因为可能存在危险的安全漏洞。
Apache 在哪个用户下运行?哪些用户需要访问此文件夹?
其次,使用chmod或chgrp。
最有可能,也是更安全的方法之一,但不是唯一的方法,是使用chgrp将文件夹分配给需要访问的用户组。
如果您向所有者和组(例如 760 或 770 等)授予读/写访问权限,并将其他权限设置为 0,则您可以保护您的应用程序,同时仍然允许您自己和组中的其他人访问。
您是否愿意编辑创建文件夹以添加 chgrp 或 chmod 命令的 PHP CMS 脚本?
更新
您可以使用递归执行一次,而不是三次创建目录:
$year_folder = date(Y)."/";
$user_folder = $year_folder."$alias/";
$section_folder = $user_folder."$section/";
//CREATE Folder
if (!is_dir($section_folder)) { // changed to is_dir to keep syntax within context
if(!mkdir($section_folder, 0764, true)){
echo "Failed to create directory: $section_folder";
}
}
作为调试步骤,您可以在上述代码之后添加以下内容以检查权限:
$perms = fileperms($section_folder);
if (($perms & 0xC000) == 0xC000) {
// Socket
$info = 's';
} elseif (($perms & 0xA000) == 0xA000) {
// Symbolic Link
$info = 'l';
} elseif (($perms & 0x8000) == 0x8000) {
// Regular
$info = '-';
} elseif (($perms & 0x6000) == 0x6000) {
// Block special
$info = 'b';
} elseif (($perms & 0x4000) == 0x4000) {
// Directory
$info = 'd';
} elseif (($perms & 0x2000) == 0x2000) {
// Character special
$info = 'c';
} elseif (($perms & 0x1000) == 0x1000) {
// FIFO pipe
$info = 'p';
} else {
// Unknown
$info = 'u';
}
// Owner
$info .= (($perms & 0x0100) ? 'r' : '-');
$info .= (($perms & 0x0080) ? 'w' : '-');
$info .= (($perms & 0x0040) ?
(($perms & 0x0800) ? 's' : 'x' ) :
(($perms & 0x0800) ? 'S' : '-'));
// Group
$info .= (($perms & 0x0020) ? 'r' : '-');
$info .= (($perms & 0x0010) ? 'w' : '-');
$info .= (($perms & 0x0008) ?
(($perms & 0x0400) ? 's' : 'x' ) :
(($perms & 0x0400) ? 'S' : '-'));
// World
$info .= (($perms & 0x0004) ? 'r' : '-');
$info .= (($perms & 0x0002) ? 'w' : '-');
$info .= (($perms & 0x0001) ?
(($perms & 0x0200) ? 't' : 'x' ) :
(($perms & 0x0200) ? 'T' : '-'));
echo $info;
以上应回显:
-rwxrw--r--