Skip to content

Technical Support

Need help with installing or configuring NodeBB? Look here.

4.7k Topics 26.1k 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
    196 Posts
    phenomlabP

    @baris updated to 3.7.2 and now just waiting for the plugin to be updated.

  • Reply by email functionality

    1
    0 Votes
    1 Posts
    226 Views
    T

    Hello, I'd like to enable reply by email.

    I found this:
    https://github.com/julianlam/nodebb-plugin-emailer-mandrill

    But it's not really maintained anymore. Is there any solution for this?

  • 1 Votes
    24 Posts
    2k Views
    D

    @baris Awesome!

  • Random profile backgrounds?

    Solved
    2
    0 Votes
    2 Posts
    267 Views
    D

    I found the answer to this. It's in the settings:

    Admin > Settings > Uploads > Profile Covers > Default Cover Images

  • Redirect after login

    12
    0 Votes
    12 Posts
    1k Views
    barisB

    Link Preview Image 1.11.0 Breaking Changes

    We are dropping support for NodeJS v6.x in 1.11.0. Please see the following issues for breaking changes to plugins and themes. https://github.com/NodeBB/Node...

    favicon

    NodeBB Community (community.nodebb.org)

  • unread count not updating

    1
    0 Votes
    1 Posts
    181 Views
    S

    this has me stumped?
    the web socket connection is ok, and everything else on the site works just fine. but I cant get the unread count to update unless I do a manual page refresh?

    my forum is running the latest v1.11.0, with a Postgres database. Im using the Persona them, with a custom child theme. (maybe the issue is there somewhere?)

    any pointers of where to look to debug would be great. its not a show stopper, more of an annoyance really

    here's the link to my support forum

  • Less files not compiling

    6
    0 Votes
    6 Posts
    701 Views
    C

    @youhosi Following your response did an upgrade and don't know how but all the themes are working now. Minus my custom theme that I guess it has some bad code in it.

    Thank you.

  • Settings up NodeBB on a subdomain

    3
    0 Votes
    3 Posts
    618 Views
    G

    @PitaJ thanks. I need to install it on Heroku and it doesn't have nginx now. I know I have a long road ahead, but I think I found the direction.

  • Where are users stored?

    2
    0 Votes
    2 Posts
    418 Views
    PitaJP

    You created a mongodb database user, not a NodeBB user. Creating NodeBB users is more complicated.

  • Administrator badge not shows

    1
    0 Votes
    1 Posts
    215 Views
    N

    I am trying to show administrator badge without success, but moderator badge shows ok. Are there any constraint? Of course, I was selected in my profile, administrator, moderatos, and both one.

  • User's last online date not updated

    6
    0 Votes
    6 Posts
    597 Views
    barisB

    This is fixed on master and will be available in 1.11.1. Related gh issues, https://github.com/NodeBB/NodeBB/issues/7086 https://github.com/NodeBB/NodeBB/issues/7085

  • 1 Votes
    11 Posts
    2k Views
    A

    I was able to get sharp working by simply building it locally.

    npm install --build-from-source sharp

    The only thing missing on my minimal centos 7 image, was g++.

  • Images href link has gone in v1.11.x

    3
    0 Votes
    3 Posts
    394 Views
    julianJ

    🔜 -- no launches Friday, Monday earliest

  • Invalid CSRF Token

    20
    0 Votes
    20 Posts
    14k Views
    H

    @phit said in Invalid CSRF Token:

    for the record for people finding this via search, for apache2 you have to set this somewhere in your nodebb vhost configuration

    Thank you very much. This really made my day !!!

  • Problems with login after upgrading to 1.11.0

    4
    1 Votes
    4 Posts
    640 Views
    H

    @FrankM said in Probmes with login after upgrading to 1.11.0:

    But in config.json i have http://...... Edit it to https:// solved the problem.
    Before version 1.11.0 i don't have this problem.

    Thanks, that solved the problem for me as well, changing http to https. And as for you, I did not have this problem before 1.11.0

    But then an other problem turned up: "Invalid CSRF Token"

    Pls see this link https://community.nodebb.org/topic/9222/invalid-csrf-token

    My solution for this was what is written in the end (I use Apache2)

    for the record for people finding this via search, for apache2 you have to set this somewhere in your nodebb vhost configuration
    with ssl

    RequestHeader set X-Forwarded-Proto "https"

    without ssl

    RequestHeader set X-Forwarded-Proto "http"

    you might have to enable mod_headers to do so!

    So upgrading to 1.11.0 gave me a problem that had to be solved in 2 steps. First by changing in config.json, then I had to modify Apache2 settings.

  • Widget only on some sections

    3
    0 Votes
    3 Posts
    364 Views
    SimosS

    @PitaJ i've made a persona child theme mantaining the same widget :

    { name: "Categories Sidebar", template: "categories.tpl", location: "sidebar" }, { name: "Category Sidebar", template: "category.tpl", location: "sidebar" }, { name: "Topic Sidebar", template: "topic.tpl", location: "sidebar" }, { name: "Categories Header", template: "categories.tpl", location: "header" }, { name: "Category Header", template: "category.tpl", location: "header" }, { name: "Topic Header", template: "topic.tpl", location: "header" }, { name: "Categories Footer", template: "categories.tpl", location: "footer" }, { name: "Category Footer", template: "category.tpl", location: "footer" }, { name: "Topic Footer", template: "topic.tpl", location: "footer" }

    but i can't see other's than linked screenshot

  • Error after upgrading to 1.11.0 [Solved]

    4
    0 Votes
    4 Posts
    708 Views
    H

    @baris said in Error after upgrading to 1.11.0:

    NodeBB is on version 1.1.0 so the command should use v1.1.x.

    1.11.0 worked fine for me.

  • Only admin account can upload non-image files

    2
    0 Votes
    2 Posts
    424 Views
    Q

    Worked it out.

    In the admin panel:

    Manage>Privileges

    then tick the 'upload files' box for registered users.

  • Missing logs - only 2 days of logs

    4
    0 Votes
    4 Posts
    479 Views
    D

    Okay, I'll also look for bugs. I think this happens when I either build, stop, or start from the command line.

  • Admins can see all signatures

    3
    0 Votes
    3 Posts
    365 Views
    D

    Maybe a permission to activate the setting?

  • Digest emails not getting sent

    25
    0 Votes
    25 Posts
    3k Views
    D

    Darn, that makes debugging difficult. I guess I'll file a bug with the errors that stopped the digest send.