I am creating a directory like this:
mkdir("thisone", 0777);
I need it to be 777 so I can have PHP create txt files in there.
This is working, however, it's giving the ownership to: nobody:nobody so I cannot delete the files, change them
or anything.
Do you know of how I can fix this?
Thanks