Posted by pzula on January 18, 2013 at 6:24pm
As I'm getting ready to launch a site of significant size, I want to come up with a solid backup plan. In the past, I've either have sysadmins taking care of this with server backups, or I've relied on the host plus backup & migrate module. I also have my local development copy and GitHub copies should all else fail.
What is your Drupal backup process?

Comments
Backup & Migrate + Git (or other file-management system)
Hi, pzula. The main difficulty in making Drupal site backups is the database. So I install the Backup & Migrate module (http://drupal.org/project/backup_migrate) on all my sites, and schedule it to backup the database periodically. Then I copy all the site's files somewhere else.
Step by step:
Good luck!
Tom Geller * Oberlin * San Francisco * TomGeller.com
Author/Presenter, Drupal video series at lynda.com
Creator of materials for Drupal-focused companies
the hard way(?) or the old-fashioned way (?)
I create an assets/ folder at the web root level and protect it with .htaccess. I create sqldumps with drush into the assets folder and I also compress the sites/ directory and all the files and folders beneath it and put that into assets/. This folder is also under version control as well.