我正在使用 moxiemanager 为我正在处理的网站进行一些图像工作,并且在我的 config.php 中,出于安全原因,我已将文件系统的读写访问权限设置为 false。然后在任何需要读取或写入权限的文件夹中,我想使用 mc_access 文件来设置这些权限。所以设置看起来像这样:
$moxieManagerConfig['filesystem.readable'] = false;
$moxieManagerConfig['filesystem.writable'] = false;
然后在 mc_access 中我将其设置为:
_filesystem.writable=true
_filesystem.readable=true
我还有从 mc_config 文件 (upload.maxsize) 中提取的其他设置,并且我遵循 moxiemanager.com 上的文档给出的格式。此外,如果我反向设置权限(config.php 设置它们为真,mc_access 设置它们为假),mc_access 文件配置会保持不变。但是当它按照我上面的方式设置时,mc_access 设置不会粘住,文件夹仍然不可写和不可读。