MyBB to NodeBB Importer?
-
@Febian
I am currently working on a mybb port of the Import.
It Imports:- Categories
- Groups
- Users
- Threads
- Postings
it does not import:
- Avatars
- Attachments
- Passwords ( everybody needs to go the Lost Password Function)
- Postings of Deleted Users get Lost
- secondary Groups
- PM
- Renommee
and last but not least: If you have many Categories nodebb gets pretty slow.
Another Problem seems to be the stability of the current nodebb Version. It crashes during the Import around every 20k Posts ( my Forum is a bit larger than yours )
-
Ah okay, good. If you work with @bentael, he can help you get your exporter working with his importer plugin, then you will only have to export out to a standard format, instead of having to handle the importing as well.
Edit: https://github.com/akhoury/nodebb-plugin-import/blob/master/write-my-own-exporter.md
-
@Nifty the nodebb-plugin-import was recently updated to support posts and topics without a user, they will be posted as Guest.
You can also save a
_guest
value on each topic or post, in case NodeBB supports a Guest-name in the future.
https://github.com/akhoury/nodebb-plugin-import-vbulletin/blob/master/index.js#L212The vbulletin exporter has also been recently updated, check the diffs
-
anyways, let me know if you run into problem
-
@bentael Oh, Thanks a lot, you guys here are a lot more active than i am used to
Is there a way to get "extra" data through the standard import as well ? I have data like Notes on the users, flags on Postings & Threads and so on which i would like to import as well. This would give me the option to use them by an plugin later on.My Forum has more than 800.000 Postings and over 13.000 Users, i would like to get as much extra data as possible transferred.
-
-
@a_5mith said:
it turns into the Mad Hatters tree when you start catering for each type of plugin and it's data.
This depends how generic data would be included. It the Import gives the plugin(s) the option to set generic data for each data type an generic way it would be the responsibility of the plugin to make the decision which data would be attached and where.
I don't talk about new Document Types, i just want to fill a few more fields, like Notes on the User Document ( standard mybb) a few fields which store Information from a few of my plugins ( this are generic fields unique to my installation ).
If it is possible to get this functionality into the Importer without hassel - that would be fine. -
open a new issue here with the list of extra fields
https://github.com/akhoury/nodebb-plugin-import/issuesthen open another one here https://github.com/asciicat/nodebb-plugin-import-mybb just as a reference link
-
Hello Nifty,
I'm not an expert user but I've managed to set up Nodebb v0.5.5 on Digital Ocean to play around with it for a while and everything is running pretty smoothly.
I've tried exporting my existing MyBB forum (21 Mo database) to my Nodebb installation and this is where things get tricky for me.I've followed the instructions left by akhoury here:
https://github.com/akhoury/nodebb-plugin-import/issues/90#issuecomment-64929108I manage to get through all the steps, but I'm not to sure how I add your nodebb-plugin-mybbex to the process.
I've installed it through npm but in the Import plugin (from nodebb-plugin-import) I can't seem to select an exporter here
"Select one of the few detected on npmjs's registry" since the list is blank.I've then tried the second solution "Or just enter the module's name or url you want to install": there I've typed the git address of your node-plugin-mybbex or the name of your plugin and the list in the previous step still stays blank.
If I try running the import, things start to happen but I have nearly 10 seconds before an automatic request to refresh the page arrives and when I do refresh I have an message stating an error since there's no npm exporter detected.
By any chance is there any way you can help me?
Thanks for all your work on the Mybb export plugin !
-
@TaLoche
Install it by npm from a console session ( nodebb directory):
npm install git+https://github.com/NiftyXXL/nodebb-plugin-import-mybbex.gitThen enter as module name
nodebb-plugin-import-mybbex
on the exporter configuration page and mark "Skip the module install ".