我借机批量优化了我网站上的图片文件夹,当然我忘记了新图片没有权限777
。
鉴于我的网站的wiki类型性质 我需要用户能够上传/替换 图像!
无论如何我可以使用php脚本或ftp程序更改整个文件夹图像的权限吗?
答案 0 :(得分:1)
使用chmod()
功能,您可以在http://pl2.php.net/manual/en/function.chmod.php
if ($handle = opendir('/path/to/files')) {
/* This is the correct way to loop over the directory. */
while (false !== ($file = readdir($handle))) {
chmod($file, 0777);
}
closedir($handle);
}
答案 1 :(得分:0)
chmod 777 *
怎么样?
如果您无法访问命令行,则应该可以使用Program execution functions之一,例如exec
答案 2 :(得分:0)
在filezilla中:全选 - >右键单击 - >文件权限(在底部)