True, working backups are a must.
Another useful tool is 'find'. For example if you hire a freelancer to make a few minor changes it is good to know exactly what files were modified:
Through SSH:
find /pathtodirectory/public_html/ -type f -mtime -2
This will show all files modified within the last 2 days.
It's a useful little command.
|