Hello,
I have a php script that creates some files. On my former host, the script could create files (using fopen fwrite commands) just by giving write permissions to the "owener". Here it seems that the php can not write files unless I give write persions to "Public". (CHMOD 777)
Is it secure to give write persions to public?
A side effect of this is that now I can not delete the files created by the php script using FTP (i get permission denied) What should I do?
Thanks.