Email
Share

We Rock Your Web Forum » Forums

bbpress database backup

(3 posts)
  1. miraculix

    member
    Joined: Aug '09
    Posts: 27

    Is there a plugin or way to automatically have my bbpress forum database backed up? I know in Drupal there's the handy backup & migrate module, but I can't seem to find an equivalent for bbPress.

    Any ideas?

    Posted 9 months ago #

  2. Posted 9 months ago
  3. Anonymous



    Run cron on the following bash (.sh) script (might want to use password control for security):

    mysqldump --add-drop-table -h host -u user -p password dbname \
    ( bb_forums \
    bb_meta \
    bb_posts \
    bb_tagged \
    bb_tags \
    bb_terms \
    bb_term_relationships \
    bb_term_taxonomy \
    bb_topics \
    bb_topicmeta \
    bb_users \
    bb_usermeta ) | bzip2 -c | bbpress.bak.sql.bz2
    Posted 9 months ago #
  4. Anonymous



    Or just switch to Drupal forum and use backup & migrate...

    Posted 9 months ago #

RSS feed for this topic

Reply

(required)

Allowed markup: BBcode blockquote code em strong ul ol li font strike center u hr.
You can also put code in between backtick ( ` ) characters.