jordan
iBrian, I havent tried to email database backups to myself, because I dont want such sensitive information sent via email, but the system should be able to email you the results of the backup with a command likeMAILTO=user@domain.comat the end of the CRON job. I would suggest googling "CRON job email" or similar. Also, I would recommend encrypting the email, to protect any sensitive details in the database from interception while in transit from your server to your PC. I did a search for "encrypting CRON job email" and found a few promising examples.CRON jobs are fantastic for automating a lot of things like this and I personally wouldnt buy software to do something like this, when the capability is already on my server.Cheers,Jerry
I use a common LAMP server and back up all of my databases by simply creating a folder for each backup and then calling a CRON job each day.So, I have folders like this ABOVE my public_html directory:/databasenamebackup/monday//databasenamebackup/tuesday//databasenamebackup/wednesday//databasenamebackup/thursday//databasenamebackup/friday//databasenamebackup/saturday//databasenamebackup/sunday/and a CRON job to backup the database each day into the relevant folder, using the following format in the CRON job:find /home/SITEHOMENAMEGOESHERE/databasenamebackup/monday/monday_wiki.sql -atime +2 -exec rm -f {} ;mysqldump -uUSERNAMEGOESHERE -pPASSWORDGOESHERE DATABASENAMEGOESHERE > /home/SITEHOMENAMEGOESHERE/databasenamebackup/monday/monday_wiki.sql(The above CRON jobs altered to suit each day of the week.)This gives me a daily backup that I can easily restore from on any day.I dont bother to backup all of WordPress (or whatever other blog or CMS I am using), but simply pull the altered folders (like template folders) over to my hard drive with Filezilla. If I also want to pull the database backups over to my PC, all I have to do is pull over the whole /databasenamebackup/ folder.Quick and easy (once you get the CRON jobs set up.)Jerry


Story: A Guide to backup Your WordPress Blog