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.

  • Group Labels not showing in thread.

    7
    0 Votes
    7 Posts
    3k Views
    KowlinK

    Not that I'm aware of, but you can hide the groups button at the top of the forum.

  • Issues Switching Themes

    3
    0 Votes
    3 Posts
    1k Views
    P

    Interesting. I've had this issue a few weeks ago but I didn't have redactor installed either. I have no idea what I did to fix it, and the others couldn't reproduce. I'll have to wait until it crops up again, but the fact that a plugin might have interfered is a good hint, thanks!

  • 0 Votes
    4 Posts
    3k Views
    julianJ

    @TiaZzz said:

    net::ERR_BLOCKED:BY_CLIENT

    Ah, I get those too, but that's a result of uBlock or such 😄

    It only really breaks if you use libreJS, but that's a different problem altogether

  • Odd Image Rotation

    5
    0 Votes
    5 Posts
    2k Views
    murphomaticM

    Ahhhhhhhh VERY interesting. Thanks so much for the info there - thought i was losing my mind for a moment.

  • Set language in admin

    5
    0 Votes
    5 Posts
    2k Views
    barisB

    @agusputra That happens because of some language keys are used in the ACP, nothing to worry about, we can replace them with the hardcoded english ones until the ACP is fully translated.

  • Cannot purge Category

    2
    0 Votes
    2 Posts
    1k Views
    KowlinK

    I had the same issue with a test forum on 0.8.3 no errors for me but the no permission

  • Install NodeBB Question

    2
    0 Votes
    2 Posts
    1k Views
    agusputraA

    No, you cannot.
    NodeBB based on Node.js and you need access to Node.js and npm to configure Nodebb

  • -1 Votes
    21 Posts
    6k Views
    P

    Oops. Didn't see this one. Try what @pitaj said and hopefully it should work. IIRC the hooks in that plugin should still be valid in the current release, I just haven't updated the nbb package manager version for 0.8.2 yet

  • Error after purging a category (async?)

    Solved
    10
    0 Votes
    10 Posts
    2k Views
    Marc Boisvert-DuprasM

    @baris Alright, thank you for all your help!

  • Facebook button only works on reload!

    1
    0 Votes
    1 Posts
    653 Views
    JenklerJ

    When i go in the menu the facebook button stopps working but if i reload the page at /hem it works at first reload.

    http://dev.web.nodebb.se/hem

    Why? Do i need todo somthing special with like buttons?

  • Google SSO fails with nginx proxy

    2
    0 Votes
    2 Posts
    822 Views
    julianJ

    You're missing the proper value in config.json.

  • Registering user externally through MongoDB

    2
    0 Votes
    2 Posts
    899 Views
    barisB

    You are better off calling the user.create method in nodebb. There are more data structures that need to be created.

  • Nginx vhost configuration help

    8
    0 Votes
    8 Posts
    3k Views
    A

    @PopsRocker can you paste both nodebb & nginx config here? I think you're missing something.

  • 0 Votes
    4 Posts
    3k Views
    P

    @julian Thank you, mailgun from npm solved the problem.

  • 2 Votes
    12 Posts
    7k Views
    X

    @baris I noticed that when you refresh home page, the home page address is converted into - https://community.nodebb.org/category/2/general-discussion (example)

    Is it possible to make the home page has always had an address https://community.nodebb.org?

  • Reload vs Restart

    2
    0 Votes
    2 Posts
    1k Views
    PitaJP

    Reload is essentially a "soft restart." It reloads the templates of plugins and recompiles the CSS, but doesn't actually shut down the server. The restarting shuts down the process and starts it back up.

  • Number of spaces

    Solved
    2
    0 Votes
    2 Posts
    1k Views
    NivixN

    That's how the markdown parser works. It's not a bug, but part of the spec for markdown.

    If you want to change how your posts are parsed, you can either write a new parser, or enable HTML in your markdown and type <br> for each new line break and &nbsp; for each space.

  • Installation Errors

    Solved
    2
    0 Votes
    2 Posts
    2k Views
    F

    I managed to fix this and thought I would post this here for posterity.

    I edited the file npm-shrinkwrap.json

    and replaced the code block on line 1159:

    "simple-recaptcha": { "version": "1.0.0", "from": "git://github.com/wzrdtales/simple-recaptcha.git#f408725106872df696436ff6a988923539ab80a6", "resolved": "git://github.com/wzrdtales/simple-recaptcha.git#f408725106872df696436ff6a988923539ab80a6" }

    with:

    "simple-recaptcha": { "version": "1.0.0", "from": "https://github.com/wzrdtales/simple-recaptcha/archive/v1.0.0.tar.gz", "resolved": "https://github.com/wzrdtales/simple-recaptcha/archive/v1.0.0.tar.gz" }
  • SSO Facebook - no icon @login page?

    Solved
    9
    0 Votes
    9 Posts
    3k Views
    A

    Fixxed myself now.

    Just rebuild it every time you do a restart or a reload or change the settings from the SSO-Plugin.

  • Changes in Persona?

    Moved Solved
    9
    0 Votes
    9 Posts
    3k Views
    barisB

    Yeah that's a pretty big change but it gives a lot more access to the data.