I'm using ZipArchive to create Zips and then provide them to download. I save them in a folder and I want to delete all every night (my cronjob would do that).

But now I've seen that they are created using CHMOD 644, and if I try to delete them with my script, I always can't delete them because I do not have sufficient rights.

How can I declare that every new Zip which is created uses 777?

Thanks for help! Flo

link|improve this question

Why not just chmod them correctly using PHP? us3.php.net/chmod – SpikeX Nov 7 '11 at 15:18
Always use 775 instead of 777. – Wesley van Opdorp Nov 7 '11 at 15:18
Why 775 on a file if the root folder, so my basic directory which is accessible through URL, is 775? – Florian Nov 7 '11 at 15:34
feedback

2 Answers

up vote 1 down vote accepted

Are you able to chmod it like so?

chmod("/somedir/somefile", 0777); 
link|improve this answer
You are genius. Why does this work with an absolute path but not with a relative path? – Florian Nov 7 '11 at 15:33
@Florian it should also work with relative paths as far as I know. What error do you recieve with a relative path? – George Reith Nov 7 '11 at 15:52
feedback

The ability to delete files from a directory depends on the permissions of the directory, not the individual files inside. If your directory is 0777, you'll be able to delete the files regardless of their permissions. On the other hand, even if your files are 0777, you might not be able to delete them if your directory is unwritable to your cronjob.

link|improve this answer
The problem is, the directory has 755, but the file has 644. So I am able to delete the directory, but I can't because it's not empty. – Florian Nov 7 '11 at 15:30
The only difference between 0755 and 0644 is that 0755 has the +x (execute) bits set. It has nothing to do with deleting anything. If your directory is 0777, you'll be able to delete the files inside it, regardless of their permissions. If your directory is 0755, you will NOT be able to delete the files inside it, regardless of their permissions. – lanzz Nov 7 '11 at 16:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.