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?
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?
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
Or just switch to Drupal forum and use backup & migrate...