Source forums exporters to NodeBB, I need your DB Dump.
-
When you load a topic, if you've been to that topic before. It will bring up a quick alert window asking if you want to return to where you were last in that topic. Which would usually be the first unread post. As for if it can be transported over from smf, not with the exporter I made. It's been a long time since I transferred from smf, but I recall that smf saves the highest PID of your last visit, any after that are considered new, which takes you to last PID plus one post. I'm not sure where this is saved however. I'm also not sure if that's something that nodebb can import.
-
Oh, there it is. Didn't see that before. Seems like an unnecessary extra click to me, going to the first unread post really is the norm rather than a special use case...
Hmm. I certainly would like to have those imported. Why do you think it's not something nodebb can import? The table is smf_log_topic, and it's pretty much just tuples of (id_member,id_topic,id_msg). Is nodebb's way of saving this vastly different?
-
@Valodim
That's definitely possible. It might take more iterations over the records, which means more importing time, but doable.Right now I am trying to import your 1.1M posts and getting segmentation fault errors, once I get passed those, I'll look into adding more features.
-
@Steve and @xCausxn, the vbulletin plugin is released.
@Steve Thanks again for your db dump.
you don't need to install it, just select it from the list of source exporters in the config.
It's not yet compatible with nodebb@master, you need to use the latest stable release.
[email protected]
Also, I recommend that you use the latest importer plugin [email protected]
so
cd /path/to/nodebb rm -rf node_modules/nodebb-plugin-import npm install nodebb-plugin-import # or npm update nodebb-plugin-import # then activate it from the ACP and use it in there.
Also, after the import is complete, you can use the post-import tools to convert the BBCode to Markdown
Let me know if you're having issues.
-
i saw your chat msg, ill reply there
-
maybe sooner, looked at the schema, seems pretty straight forward
-
I didn't see the earlier post about post bookmarks until now, but that cannot be migrated over. Post bookmarks are specifically a client-side feature, meaning your bookmarks on one machine (e.g. a desktop) don't carry over to another (e.g. a laptop).
It could be a server-backed feature, however, just at the current time, it is not.