Automated cron backup thru email

Version
1.2 (last update on Oct 25, 2008)
Rating
Compatibility
Votes
Favoured
14
License
GPLv2 or later
Non-Commercial
Type
Views
65561
Date Added
5 March 2006
This appears to be a very good solution, I like the fact that it operates at O/S level and is independent of the Joomla installation, but by using e-mail your site's contents could be exposed, this would be a problem if your database contained sensitive data (user details etc)
This solution was a good start to save my site
I changed the image backup to save al files modified the last day, by using the statment below
# Backup all changed files in last day
find $WWWDIR -type f -mtime -1 | xargs tar -zcf $BACKUPFILE
The Var $WWWDIR is my Joomla Home dir
I changed the image backup to save al files modified the last day, by using the statment below
# Backup all changed files in last day
find $WWWDIR -type f -mtime -1 | xargs tar -zcf $BACKUPFILE
The Var $WWWDIR is my Joomla Home dir
I use this for my sites and it is great! I have it set to 3 days a week and I copied the code within the file to do 3 of my sites at once.
Only down side is if your zip file is over a certain size, some of the free email systems will not accept it. The image folder is too large for one of my sites, but all the others work great!
Only down side is if your zip file is over a certain size, some of the free email systems will not accept it. The image folder is too large for one of my sites, but all the others work great!







