- Edited
We pretty much have to use the attachments directory instead of storing attachments in the database otherwise our database would be massive.We just ran into an issue with our server and had to restore the site from backup, and were shocked to discover the attachments directory was empty and now we are getting hundreds of emails non-stop: IOException: Unable to read resource contentUpon further investigation the folders and files seem to not get backed up because the directory has non-standard permissions then the system would be expecting on a user folder. Standard directory permissions would be 755 drwxr-xr-x giving read/write/exec to user and read/exec to group/everyone. The folder also has a sticky bit which is typically only set on /tmp - https://en.wikipedia.org/wiki/Sticky_bitMy suggestion would be that this be changed in order that standard linux/unix backups can back the attachments directory up. Would it also be possible attach the standard file with the extension? I'm not sure what the benefit is to renaming it to a temp sort of file with no extension is.And as a side note if anyone has any suggestions what we should do to resolve the issue with our missing attachments in our 7,000 tickets please let me know. I think we are going to have to try and make a duplicate of the site and write a script to somehow remove these from the database to stop these errors, but maybe there is a better way...?