Backup Manager plugin

Plugin details

backup_manager adds support for advanced backup from and to Radiant databases.

Websitehttp://wiki.pluginaweek.org/Backup_manager Repositoryhttp://svn.pluginaweek.org/trunk/plugins/radiant/backup_manager/ Author Aaron Pfeifer Tags backup, radiant LicenseMIT

Documentation

Install the plugin:
ruby script/plugin install http://svn.pluginaweek.org/trunk/plugins/radiant/backup_manager/

Description
==============

Backup/restore operations for Radiant makes it really easy to import new versions of your Radiant website based on a local test or development environment. In addition, you can use this to perform periodic backups of your Radiant application.

Usage
=======

Adding other classes to backup
----------------------------------------------

If you have other classes/tables that can be backed up, you can add these by either:

1. Creating a new initializer like so:

config/initializers/backup_models.rb:

  Radiant::Backup.concat(%w(DbFile Attachment))


2. Overriding the Radiant::Backup model like so:

app/models/radiant/backup.rb:

  module Radiant
    class Backup
      self.models.concat(%w(DbFile Attachment))
    end
  end

Further Documentation

There is currently no advanced documentation for this plugin.

New documentation

Edit plugin | (0 older versions) | Last edited by: hardway, 6 months ago