'lo,
when I do that
mkdir("mypath",0777);
the file created on server return 550:permission denied
when I try to delete it, insert data in the file or else (except rename).
0775doesn't work either
what the hell is going wrong? what the octal basis needed to have a usable file created?
linux runs my site
thanks for help
mat
i had to do this... it seems WRONG, but it is the only way i could get it to work
mkdir($folder_name, 0777); chmod($folder_name, 0777); // neccessary
after the mkdir, the permissions were still wrong.
mike