fopen Creates File, But how to change permissions? fopen Creates File, But how to change permissions? php php

fopen Creates File, But how to change permissions?


You should be able to chmod it using only the following line:

chmod($filename, 0777);

Note the 0 before the 777.

Also do not change the ownership before it has been chmod'ed