Skip to content

Technical Support

Need help with installing or configuring NodeBB? Look here.

4.7k Topics 26.2k Posts

Subcategories


  • User documentation for NodeBB

    44 Topics
    44 Posts
    Jay MoonahJ

    One of the first important things to do after setting up NodeBB is to set up an emailer plugin. While NodeBB does include a local emailer, if your forum is particularly active we recommend using an third-party emailer such as SendGrid which provides better deliverability for sites that send a high volume of email. Setting up SendGrid in NodeBB is very easy.

    Open the administrative dashboard using the 'gear' icon on your forum. Open the Extend > Plugins menu, and select the Find Plugins tab. Use the search on the right. Type 'SendGrid' and the plugin should appear -- select Install when you see it. From Installed tab on the Plugins menu, search again for 'SendGrid' and select Activate. Activating the plugin will require a restart of your forum. To restart, select the Dashboard menu and press the Restart button to the right. After NodeBB restarts, the SendGrid plugin will be active.

    After you restart, there should be a item called Emailer (SendGrid) under the Plugins menu -- if you don't see this right away, try refreshing your browser.

    Sign up to SendGrid

    Go to the SendGrid website, open the pricing page and scroll to the bottom. Click on the link and create your free account. Once you've confirmed your SendGrid account via email, you should be able to login to the SendGrid website. On the left side of your SendGrid dashboard, open Settings and click on API Keys. Click the button in the top right to create a new key. Make sure that the key has Full Access for Send Mail and Alerts.  When you are done, the new key to your clipboard.

    Now, return to the SendGrid menu on your NodeBB admin panel. Paste the API key into the field, and save your changes. Now go back to the Dashboard to restart your forum one more time.

    SendGrid should now be working for your forum.

    YouTube Setting up SendGrid mailer for NodeBB

  • NodeBB guides, how-to's and general tips and tricks

    82 Topics
    599 Posts
    barisB

    Quick start plugin has an example on how to add a new api route https://github.com/NodeBB/nodebb-plugin-quickstart/blob/master/library.js#L40-L76.

    The hooks that are fired client side are for client side code in plugins. If you want to pass data from the client to the server you have two options.

    Create an api route like in quick start plugin Create a new socket event listener on the server side and use socket.emit() client side. Example here
  • 25 Topics
    201 Posts
    eeeeeE

    I think you answered my point, by agreeing there are issues.
    I didn't even attempt to deploy nodebb, I had problems with much smaller projects!
    Nextjs routing was going through a change of design at the time, so perhaps that is less confusing now, but there were multiple other headaches. I would get build errors and issues with package management.

  • 0 Votes
    9 Posts
    337 Views
    RodionR

    Can you imagine...
    I updated NodeBB to 3.5.2 and everything worked)
    I don't understand why it didn't work on 3.5.1.
    Thanks!

  • What is swagger ui path in nodebb?

    Solved
    3
    0 Votes
    3 Posts
    133 Views
    julianJ

    Thanks @oplik0 even I forgot about /debug/spec/* and I wrote those controllers 😄

    Keep in mind that the docs.nodebb.org routes only display the latest stable version of NodeBB (tracking the master branch)

  • Unable to do page navigation of RSS feeds

    Unsolved
    2
    0 Votes
    2 Posts
    105 Views
    julianJ

    There is /recent.rss which should work for you.

  • 0 Votes
    4 Posts
    271 Views
    C

    @julian Thank you, no problem now

  • Can not login

    Solved
    17
    0 Votes
    17 Posts
    355 Views
    X

    @phenomlab Thank you very much! I can log in now👍 😊

  • 3.4.0 Upgrade Support

    117
    3 Votes
    117 Posts
    10k Views
    phenomlabP

    @faizanzahid have a look at the Storj plugin

  • Cloudflare Error

    Unsolved
    2
    0 Votes
    2 Posts
    87 Views
    B

    Try restart your forum and check your server.

  • Can not install

    Unsolved
    3
    0 Votes
    3 Posts
    125 Views
    phenomlabP

    @xianqu check to ensure that the mongodb service is running. It isn't by default after installation.

  • How can I login my forum through the nodebb.org/dashboard

    Solved
    5
    0 Votes
    5 Posts
    155 Views
    C

    @baris another issue. after some rebuild & restart . the saas plugin disappeard..

    update: never mind, seems my plugin break the saas load. not issues now

  • Clarification for `isCluster`

    Moved
    2
    0 Votes
    2 Posts
    100 Views
    barisB

    Basically the isCluster setting controls how multiple nodebbs will communicate with each other.

    If it is not set explicitly it is determined automatically from number of ports used. https://github.com/NodeBB/NodeBB/blob/master/loader.js#L108

    So if you are only running a single nodebb process on each server but using multiple servers you need to manually set it to true so that the nodebbs use redis pubsub to communicate.

    Link Preview Image NodeBB/src/pubsub.js at master · NodeBB/NodeBB

    Node.js based forum software built for the modern web - NodeBB/src/pubsub.js at master · NodeBB/NodeBB

    favicon

    GitHub (github.com)

    If all the nodebb processes are one the same physical server they can just communicate through IPC, if cluster is set to true they will use redis

  • How add username to panel header?

    Solved
    8
    0 Votes
    8 Posts
    531 Views
    barisB

    On latest version of NodeBB you no longer need the js code, since the logged in user is provided in the loggedInUser object. So you can use the below html widget.

    <div class="mypanel123">Welcome to forum, <a href="/me">{loggedInUser.username}</a></div>
  • 0 Votes
    5 Posts
    209 Views
    CannybirdC

    @baris @saikarthikp9 , It worked. thank you!

    home.JPG

    Footer.2.JPG

  • Multiple domain (pwa, sitemap, plugins)

    Solved
    2
    0 Votes
    2 Posts
    147 Views
    PitaJP

    NodeBB doesn't really support multiple domains, and we recommend you redirect one to the other instead.

  • Get list of topics from API

    Moved
    5
    0 Votes
    5 Posts
    248 Views
    barisB

    You can control the maximum pagination on /recent with the acp setting below.

    image.png

  • Missing Submit bar/button in New Topic on Mobile

    Solved
    9
    0 Votes
    9 Posts
    526 Views
    barisB

    This is fixed now, will be available in 3.5.2. Thanks for reporting.

  • how to change the width of the group name?

    Solved
    5
    0 Votes
    5 Posts
    187 Views
    RodionR

    Thank you very much! Very helpful)
    I didn't think it was that simple)

  • Exclude Specific Category in RSS Feed

    Solved
    3
    0 Votes
    3 Posts
    140 Views
    T

    @baris okay thanks for the info!

  • Client side script seems to not work on page change

    Solved
    24
    0 Votes
    24 Posts
    924 Views
    barisB

    @frostzn yeah that explains it, when you click to go to another page an ajaxify starts and when you try to call ajaxify.go('login') it is getting caught by that code because the previous one hasn't finished yet.

    We will release 3.5.1 this week 👍

  • 0 Votes
    4 Posts
    906 Views
    omegaO

    @phenomlab Bingo... Worx! Thanks 🎉

  • Incorrect text after registration

    Unsolved
    2
    0 Votes
    2 Posts
    100 Views
    barisB

    @Kevin1312 the translations for german can be found in the folder, /nodebb/public/language/de/register.json. If you want to fix it for everyone you can do so at https://explore.transifex.com/nodebb/nodebb/