Can't edit or create topics

Unsolved Technical Support

Suggested Topics


  • 0 Votes
    2 Posts
    372 Views

    Not at the moment without a custom plugin.

  • 0 Votes
    4 Posts
    666 Views

    Everything is working now after fixing Problem 4 and configuring from IP to domain name.

    I was attempting to get nodebb working on strictly the IP address. However, I was able to get the domain linked by utilizing Custome Resource Records settings of:

    Name / Type / TTL / DATA @ / A / 1h / xx.xxx.xx.xx * / A / 1h / xx.xxx.xx.xx

    Then, I simply changed my ip address to the domain and now everything is working perfectly. I am not sure why, though.

  • 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
    6 Posts
    2k Views

    @mega Don't forget connect-redis 🙂

    npm i redis@~0.10.1 connect-redis@~2.0.0

  • 0 Votes
    7 Posts
    2k Views

    Hi Baris,

    And thank you so much for pointing me to the right direction. I was not clear how to delete/update these database settings. I have used Mongo_Express for this and cleaned the database according to your referenced topic. And it finally cleared the unwanted topics from my forum.

    Thank you so much.

    Rajendra