Results 1 to 10 of 10

Thread: Wordpress backup

  1. #1
    webbyrobster's Avatar
    webbyrobster is offline Hello World
    Join Date
    Apr 2011
    Location
    UK
    Posts
    9

    Default Wordpress backup

    Hey guys,

    Which are the best plugins to backup Wordpress? When I say backup I mean everything from the DB, tables to draft posts.

    Also automation would be good :)

    Thanks,

    Rob.

  2. #2
    chipbennett's Avatar
    chipbennett is offline WordPress Legend
    Join Date
    Feb 2009
    Location
    St. Louis, MO
    Posts
    1,997

    Default

    Personally, I think BackupBuddy (commercial Plugin from the iThemes folks) is the hands-down best choice currently.

    Another option is "Automatic WordPress Backup" (available in the Repository).

    Both of these Plugins handle both DB and file backup. There are other Plugins that will handle DB-only backups.
    WP TurnKey - Turn-Key WordPress installation and maintenance services
    WordPress user since 2005 | @chip_bennett | chipbennett.net | cbnet Plugins

  3. #3
    chipbennett's Avatar
    chipbennett is offline WordPress Legend
    Join Date
    Feb 2009
    Location
    St. Louis, MO
    Posts
    1,997

    Default

    I also just found this one: BackWPup (also in the Repository). It seems to be under current development, and support (via the WPORG support forums). Might have to give it a test-spin.
    WP TurnKey - Turn-Key WordPress installation and maintenance services
    WordPress user since 2005 | @chip_bennett | chipbennett.net | cbnet Plugins

  4. #4
    alexrodriguez's Avatar
    alexrodriguez is offline Hello World
    Join Date
    Dec 2009
    Location
    Miami
    Posts
    14

    Default

    I use VaultPress and it is solid!

  5. #5
    Jeffro's Avatar
    Jeffro is offline WPTavern Forum Admin
    Join Date
    Jan 2009
    Location
    Ohio
    Posts
    2,359

    Default

    I use BackupBuddy and it's worked flawlessly for me since I've purchased it. I can control when and what is backed up and the rest is automated. If you can afford it, VaultPress is a handy service to use for backing up.

  6. #6
    sridhar's Avatar
    sridhar is offline Hello World
    Join Date
    Apr 2011
    Location
    Bangalore, India
    Posts
    2

    Default

    Another vote for BackupBuddy.

    I develop sites locally and restore them online in 5 minutes using BackupBuddy. It takes care of everything - WordPress, database, migration of URLs, widget data, layouts (if theme provides them) etc.

  7. #7
    wycks is offline Hello World
    Join Date
    Apr 2011
    Posts
    6

    Default

    I use a cron + a rubygem. I know it's not a backup plugin, it's better.

  8. #8
    Ryan's Avatar
    Ryan is offline WordPress Legend
    Join Date
    Jan 2009
    Location
    New Zealand
    Posts
    2,801

    Default

    Welcome to the forum wycks :)

    I've also contemplated the cron approach. It seems more sensible than using a plugin, albeit slightly more winded way of doing it. Do you know of any PHP applications for doing it? I assume there's something out there for it.

  9. #9
    wycks is offline Hello World
    Join Date
    Apr 2011
    Posts
    6

    Default

    Ryan
    Welcome to the forum wycks :)
    Thanks:)

    I think it's probably the wrong approach to use php , at least if your have OS/ Root access. It already has an easy to use built in cron ( crontab), you can certainly call if from a php script, but I prefer not taking the risk or re-inventing the wheel.

    A lot of people don't think of ruby when running wordpress, but at the server level it has some really incredible easy to use tools.

    I wrote a tutorial on how to use the 'backup rubygem' , after using this, I don't see myself ever using anything else.

    It zips, emails, backs up to s3, dropbox, rackspace, ftp, encrypts, etc, etc, and takes about 2minutes to setup ( if you have ruby already). I use it for WordPress but it works with anything.

    The gem is here: https://github.com/meskyanichi/backup

    I can link my tutorial if your interested, for instance this is what my backup looks like to amazon s3 ( backs-up sql, wordpress root folder, a directory outside the wordpress root, and my apache logs). Also It only backs up changed files ( saves bandwidth).

    Code:
    every 1.day, :at => '4:30 am' do
    **command "backup perform -t back_it_up_baby"
    end

  10. #10
    Ryan's Avatar
    Ryan is offline WordPress Legend
    Join Date
    Jan 2009
    Location
    New Zealand
    Posts
    2,801

    Default

    But can't you use a Cron job to load a PHP script instead of a Ruby script? That way I wouldn't need to install Ruby on the server.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •