Wordpress post import error - [process-count-at:19954] skipping topic:_tid: 20024:cid:15:_cid:1283:uid:2:_uid:1 err: Error: [[error:no-category]]

NodeBB Plugins

Suggested Topics


  • 4 Votes
    13 Posts
    288 Views

    @julian exactly that was the problem, thanks for the hint!

    for others who face maybe similiar issues:
    The following format worked for me (.csv format):

    username, email User1,[email protected] User2,[email protected]
  • 1 Votes
    4 Posts
    1k Views

    @Jenkler it's like the bounty system on StackExchange sites.

  • 0 Votes
    2 Posts
    2k Views

    Found the solution, importing too much topics in a single category hangs the nodebb, import some data than move it to some temporary category. Thasn import remaining data, meanwhile delete mongodb import Garbaze in using these mongo commands

    db.objects.update({},{$unset: {_imported_tid:1}},{multi: true}); db.objects.update({},{$unset: {_imported_uid:1}},{multi: true}); db.objects.update({},{$unset: {_imported_cid:1}},{multi: true}); db.objects.update({},{$unset: {_imported_slug:1}},{multi: true}); db.objects.update({},{$unset: {_imported_locked:1}},{multi: true}); db.objects.update({},{$unset: {_imported_path:1}},{multi: true}); db.objects.update({},{$unset: {_imported_title:1}},{multi: true}); db.objects.update({},{$unset: {_imported_content:1}},{multi: true}); db.objects.update({},{$unset: {_imported_guest:1}},{multi: true}); db.objects.update({},{$unset: {_imported_ip:1}},{multi: true}); db.objects.update({},{$unset: {_imported_user_slug:1}},{multi: true}); db.objects.update({},{$unset: {_imported_user_path:1}},{multi: true}); db.objects.update({},{$unset: {_imported_category_path:1}},{multi: true}); db.objects.update({},{$unset: {_imported_category_slug:1}},{multi: true});

    But keep in mind this will also delete the history of import will result in duplicate categories get imported or the posts, to prevent this keep writing post ids and category ids which you imported and delete them from the old database.

  • 0 Votes
    9 Posts
    5k Views

    Oh yes, back when I worked with php, adminer was a miracle. So much more lightweight compared to pma.

  • 1 Votes
    1 Posts
    2k Views

    Hi,

    We want to migrate wordpress posts as well as comments and replies associated to that post into nodeBB under General Discussion category.
    Please note our wordpress site is multi-site network.
    We have search for the implemented plug-in but we have not found any plug-in.
    So if you know any kind of a plug-in supported for latest version 0.6.0 which fulfil our requirement, please let us know.

    If there is no such kind of a plugin is available we are planning to implement wordpress plugin which migrate posts as well as comments and replies associated to that post.

    To implement wordpress plugin we need REST/MOBILE API. So by using that REST/MOBILE API, We can create topics/comments/reply from outside the nodeBB environment. So please let us know if nodeBB supports such kind of REST/MOBILE API.

    So any help would be greatly appreciated.
    Thanks!!!