A question aboud file permissions when saving a file that when non existent, is created initially as new file.
Now, this all goes well, and the saved file appear to have mode 644
.
What to I have to change here, in order to make the files save as mode 777
?
Thanks a thousand for any hints, clues or answers. The code that I think is relevant here I have included:
/* write to file */
self::writeFileContent($path, $value);
/* Write content to file
* @param string $file Save content to wich file
* @param string $content String that needs to be written to the file
* @return bool
*/
private function writeFileContent($file, $content){
$fp = fopen($file, 'w');
fwrite($fp, $content);
fclose($fp);
return true;
}
You just need to manually set the desired permissions with
chmod()
:PHP has a built in function called
bool chmod(string $filename, int $mode )
http://php.net/function.chmod
If you want to change the permissions of an existing file, use chmod (change mode):
If you want all new files to have certain permissions, you need to look into setting your
umode
. This is a process setting that applies a default modification to standard modes.It is a subtractive one. By that, I mean a
umode
of022
will give you a default permission of755
(777 - 022 = 755
).But you should think very carefully about both these options. Files created with that mode will be totally unprotected from changes.