Well I am fighting with this problem from hours .
I have a txt file which contain user data , with permission 644 and the owner is
boy boy
I am trying to add a txt line on this file using fopen but I receive permission problems .
If I try to chmod the file 777 with
chmod("$data_file",0777);
but I always receive an "Operation not permitted" error .
So , what have I do to to write a file with chmod 644 using php ?
Safe mode is disabled (off) .