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