I have WordPress installed on my server for my blog. I back up all the files from the server on a schedule. But this is just the files--not the database. Ideally, I'd like to automatically save a database dump on the server periodically so that it gets backed up along with all the files. What's the simplest way to do this?
migrated from webapps.stackexchange.com Sep 30 '12 at 20:37
|
There is a plugin called WP-DB-Backup http://wordpress.org/extend/plugins/wp-db-backup/ You can configure it to email you a backup of your blog at a specific interval. |
|||
|
|
|
There are several back-up plugins. The simplest procedure is for the back-up to include the xml export file as then it can easily be imported into another WordPress installation. One plug-in that does this is BackWPup (http://wordpress.org/extend/plugins/backwpup/). You can set it to email you a back-up at regular intervals. It is highly customizable. Plug-ins that return only the SQL file are more difficult to restore as you have to go via phpMyadmin rather than simply through a WP backend. |
|||
|
|
|
There is also a service, Backupify, www.backupify.com that provides backup services for wordpress. |
|||
|
|
|
BackWPup http://wordpress.org/extend/plugins/backwpup/ will run on a cron job to backup just the database and/or wp-content or any other folders and files. If you have access to any FTP accounts (or amazon S3 bucket, etc.) other than where your site is, the plugin can also send the files there; very good for security to have a completely separate place for your backups. |
|||
|
|
