我从其他开发人员继承了一些代码,我正在尝试解决文件权限问题。基本上,当从自定义管理面板上载文件时,它们被赋予相当于755或644的疯狂奇怪的363权限级别。我联系了主机,他们说文件和文件夹权限存在问题。我无法通过FTP手动更改文件权限。我得到了照顾。我要做的是在上传文件后更改文件权限。它显示成功,但是当我通过FTP检查文件时,它仍然是363.我的代码是错误的还是有任何更简单的方法来解决这个问题。任何帮助,将不胜感激。代码如下:
function fileUpload($destination, $filename, $codeupname="case")
{
// set_time_limit(0);
// ini_set("post_max_size", "30M");
// ini_set("upload_max_filesize", "30M");
// ini_set("memory_limit", -1 );
if ($_FILES[$filename]['name'] !="")
{
$unique_id_query = strtoupper(substr(md5(uniqid(rand(), true)), 0 ,16));
$unique_add = $unique_id_query;
$unique_name = $destination.$codeupname.$unique_add;
//chmod($destnation,"777");
if($_FILES[$filename]["error"] > 0)
{
//echo $_FILES[$filename]["error"]." - error";
return -1; // file error
}
else
{
$uploadedfile = $_FILES[$filename]['tmp_name'];
$destination1 = $unique_name.$_FILES[$filename]['name'];
$path = "../".$destination1;
$result = move_uploaded_file($uploadedfile, $path);
if(!$result)
{
return -1;
}
else
{
echo $result;
//SET PROPER READ PERMISSIONS
$path2 = "/home/content/f/a/c/faccounting/html/".$destination1;
echo "PATH: ".$path2."<br />";
$result2 = chmod($path2, "0755");
echo "Result: ".$result2;
return $destination1; // returning image name and path
}
}
}
else
{
return -1; // no file persent
}
}
答案 0 :(得分:3)
chmod
期望第二个参数为int,并且您正在传递字符串。转换为int的"0755"
是755,而你希望0755
是整数值的八进制表示 - 493。
所以你需要改变
$result2 = chmod($path2, "0755");
到
$result2 = chmod($path2, 0755);