This problem is driving me mad!
I changed the permission on a folder to 777 then I created a subfolder called images also mode 777.
I am uploading gif's and jpg's into this images folder using php. After I move the file using move_uploaded_file() I chmod the file to mode 777.
The problem is if I try to delete the file either using unlink() or exec("rm .....") I get a permission denied error!!!! How can this be? How much mode permission does php want? Is there some setting somewhere I'm not aware of that preventing me from deleteing?
I don't wanna have to go thru this folder and delete all the rubbish periodically, its supposed to be tottally automated.
Can anyone help please?
thanks
Mitchell