I was using the chmod($path, $mode, bool)
function, but it wasn't setting permissions correctly, so I am now trying:
$fp = fopen($path, 'w');
fclose($fp);
chmod($path, 0750); //changed to add the zero
return true;
problem is when I use the first method it creates the path ok... something like this uploads/2013/name/1/file.pdf(correct) but the permissio0ns are incorrect.
when I use the second method it creates a file with no extension: uploads/2013/name/1(incorrect) but the permissions are correct...
Here is my code:
if($_POST["upload"]){
$year = date('Y');
//path to directory
$path = $_SERVER["DOCUMENT_ROOT"] . '/uploads/' . $year . '/' . strtolower(str_replace(' ','',$_POST["username"])) . '/' . $_POST["month"];
//path to file
$target_path = $path . '/' . basename($_FILES['uploadedfile']['name']);
$filename = basename($_FILES['uploadedfile']['name']);
/* $ext = substr($filename, strrpos($filename, '.') + 1); */
if(!is_dir($path) && !file_exists($target_path)) {
mkdir($path, 0750, true);
chmod($path, 0750, true); //changed to add the zero
if(($_FILES["uploadedfile"]["type"] == "application/pdf") && ($_FILES["uploadedfile"]["size"] < 550000)) {
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)){
print "<div class='success'>The file " . "<span class='filename'>" . basename( $_FILES['uploadedfile']['name']) . "</span>" . " has been uploaded</div>";
}
} else {
print "<div class='error'>Wrong file format</div>";
}
} else {
print "<div class='error'>File already exists!</div>";
}
}
Looks like your running into an issue with umask try doing a:
in the beginning of your script.
The default umask is fetched from your system configuration and is normaly 0022 and this is applied everytime you do a chmod in php so a chmod 0777 with a umask of 0022 turns into a 0755