bbPress Standalone to Plugin Converter Beta 2
-
Hello folks,
I along with Ben L. aka Nightgunner5, have created a bbPress standalone to plugin converter which already does a good job converting your bbPress forums.
To use it, upload the file
bbs2p.php
to your server. Now let us assume that/
is the place where you have placed the script,/blog/
is the WordPress directory and/forum/
is the bbPress standalone directory. So, you would editbbs2p.php
, scroll down to line 36 and changedefine( 'BBS2P_WP_PATH', '' ); /** With Trailing Slash, if required */
define( 'BBS2P_BB_PATH', '../forum/' ); /** With Trailing Slash, if required */To:
define( 'BBS2P_WP_PATH', 'blog/' ); /** With Trailing Slash, if required */
define( 'BBS2P_BB_PATH', 'forum/' ); /** With Trailing Slash, if required */Similarly, if you have script and WordPress blog in
/
and the forum in/forums/
, then change those lines to:define( 'BBS2P_WP_PATH', '' ); /** With Trailing Slash, if required */
define( 'BBS2P_BB_PATH', 'forums/' ); /** With Trailing Slash, if required */Then run the script and the converter would guide you. Some points to note:
- Needless to mention, if it isn’t your test run, please have a backup. We cannot be held responsible for any data loss.
- Run it on your localhost as the converter is heavy.
- Supports the Subscribe to Topic plugin by _ck_ and bbPress 1.1 alpha+ subscriptions import too. Have that plugin activated if you want to migrate subscriptions from the plugin, else it will check for the alpha version.
- Have the bbPress plugin activated, revert to default themes and disable any other plugins.
- Currently, there are three situations:
- You have a new WordPress blog, to which you are migrating to and an established forum. Then, you would go to user migration section first and then proceed to forums, topics, posts migration section. In this process, all your WordPress users would be deleted (well, renamed to another table) and in place of those, bbPress users would be added. A keymaster will be WP admin, bb admin and moderator will be bbPress plugin moderators, rest all would be converted to the default WP role (which can be set in your WordPress settings).
- Your WordPress and bbPress user tables are integrated. You don’t need the user migration process and you can directly go to forums, topics, posts migration section. No worries.
- You have a established WordPress blog, with a good number of users and can’t afford to lose those. This is currently not supported as it is hard to merge two conflicting user sets.
- After converting, do recounts, delete the script and delete the bbPress standalone section if not needed.
Download: http://code.google.com/p/bbpress-standalone-to-plugin/downloads/detail?name=bbs2p-beta2.zip
Cheers! Hope that helps.
Regards,
bbPress Geeks
ps. Special thanks to John James J. for developing the bbPress plugin, without which, of course, this converter wouldn’t have been there.
- You must be logged in to reply to this topic.