What Plugin Is Used Here to Show Web Link Slugs

NodeBB Plugins

Suggested Topics


  • 0 Votes
    1 Posts
    234 Views

    What the title says: which would be the simplest plugin to start learning from?

    What I'm trying to accomplish is to create a MongoDB collection where to store some information, then execute all CRUD operations.

    LE: this should've been posted in plugins category.

  • 0 Votes
    2 Posts
    1k Views

    Looking at the code, it appears the plugin will not automatically associate your token's id with an existing user's uid when they overlap (likely for security reasons). It checks the database hash 'appId:uid' for the association. The hash fields are your app's id and the value is the associated uid. You should be able to manually create an association with an existing user by editing that hash.

    I think the mongo command would be like this:
    db.objects.update({ _key: "appId:uid" }, { $set: { "13": "13" } })

  • 0 Votes
    24 Posts
    9k Views

    Fixed, i had to as suggested by several users to change my "base_url" or "url" (depends on your nodebb version). But i had to add the key "port" in the config.json as well.

    "url": "http://myforum.com",
    "port": "1234"

  • 2 Votes
    5 Posts
    2k Views

    @baris said:

    I'm guessing the party you are at is really dull since you are here trolling my posts (rofl)

    the "party" I was at was so dull that I'm still sober and back to working on NodeBB at 1am

    p.s. you should ditch the cats and keep the avatar you have in that screenshot, we miss the baris who used to have hair 😄

  • 2 Votes
    8 Posts
    3k Views

    @tedr56 I tried installing this plugin on 0.5.3 but it does not seem to work. I opened an issue on your github repo, with more details. Let me know if I can help debug this or fix it. But first wanted to ask you if you know what may be wrong.