Nodral Posted June 13, 2011 Share Posted June 13, 2011 Hi I have created an image using the image() functions of php and have saved it to the my server. I now need my script to be able to delete and overwrite this file, but due to the server settings (which I have no control of) every file saved becomes read-only (644) I can access the files and change this via ftp, but this is obviously not an option when my app becomes live online. Is there a way I can change the attributes of the file to (777)? Quote Link to comment https://forums.phpfreaks.com/topic/239255-file-attributes/ Share on other sites More sharing options...
gristoi Posted June 13, 2011 Share Posted June 13, 2011 use php's chmod command chmod($filename, '0777'); Quote Link to comment https://forums.phpfreaks.com/topic/239255-file-attributes/#findComment-1229164 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.