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.

  • Understanding the dashboard in ACP

    1
    0 Votes
    1 Posts
    559 Views
    Vamsi KrishnaV

    Hi everyone,
    I have a few questions regarding the dashboards in the admin control panel

    Does the unique visitors count include unregistered users too? Where can I see the average session duration of the users on a day-by-day basis? Where can I see the breakdown of users who are logging in atleast once a day/week/month (DAU, WAU, MAU)

    Thanks in advance

  • 403 forbidden - Permission denied

    Unsolved
    4
    0 Votes
    4 Posts
    2k Views
    julianJ

    @worp1900 At least 1.3.13 is required due to this changelog: http://nginx.org/en/CHANGES

    The websocket changes in there are required. Not quite sure why your install didn't with with 1.11, though NodeBB has worked fine with Nginx ever since then with no problems 😸

  • Notification Only? WHY?

    3
    0 Votes
    3 Posts
    1k Views
    barisB

    @jimmyc2018 You can manually change the code to set it to notification & email. Change it here and here from notification to notificationemail.

  • Multiple NodeBB in cluster

    4
    0 Votes
    4 Posts
    1k Views
    PitaJP

    Oh sorry are you talking about running a cluster of processes for a single forum, or running multiple forums on the same server?

  • Votes not being calculated

    4
    0 Votes
    4 Posts
    838 Views
    barisB

    Not without a plugin. You would have to increase the vote count on every upvote/downvote that happens in the topic, instead of just the main post. And gotto write a script to run through all posts and update the values.

  • Timeline for Nodebb?

    1
    0 Votes
    1 Posts
    652 Views
    Tommy DonbavandT

    I am planning to start a new forum but I don't like using its traditional layout that I want to use a layout like social networks out there (Facebook, Linkedin..) I found this forum https://smartphones.best/ matched my requirement to have a timeline on my forum homepage. I prefer its layout because comments can display below each topic.

    The problem is my friend recommended me to use nodebb but I searched and not found any addons to do that. Does anyone knows how to create timeline for a forum? Please suggest me!

    Thanks in advance.

  • Issue naming the root of NodeBB install

    4
    0 Votes
    4 Posts
    1k Views
    T

    @jimmyc2018 said in Issue naming the root of NodeBB install:

    @pitaj I did, I could see it live at http://myipaddress:4567

    Is your domain set to resolve to that IP address?

    Your nginx config also looks like it is missing a lot. The documentation has a lot of info. A full example block with all the recommendations lives here: https://docs.nodebb.org/configuring/scaling/ but at a minimum you should follow the guide on this page: https://docs.nodebb.org/configuring/proxies/nginx/

  • Free HTTPS for NodeBB

    7
    0 Votes
    7 Posts
    2k Views
    T

    @jimmyc2018 said in Free HTTPS for NodeBB:

    I just setup "Let's Encrypt" yesterday but today noticed "Secure" doesn't always show up beside my URL as I'm browsing back and forth through my NodeBB forum.

    There's even one forum Topic/Page that always shows up without the "Secure" sign. Even if I repeatedly refresh the page and clear my browser out and come back to it.

    Has anyone else experienced this?

    On top of changing the URL to HTTPS, you should setup forwarding so people always hit your https page.

    With CloudFlare I have these setup:
    0_1518196963653_70ff6121-ce58-4336-b215-43bb9d20aa12-image.png

    For good measure, I have the following in my nginx config too:

    server { listen 80; server_name gamingexodus.com www.gamingexodus.com; return 301 https://$host$request_uri; }

    Though looking at my nginx block now, I probably need to say return 301 https://gamingexodus.com$request_uri; to ensure www is not used.

  • [UPDATE] Moving from localhost to ip.

    1
    0 Votes
    1 Posts
    557 Views
    jaybone26J

    Hello. I just installed Nodebb on to my server and I'm not sure which conf files I need to edit so i can have outside connections come in. right now socket io and restricted to localhost as well as Nodebb. I am able to navigate the site but not able to save and changes i made. mongod database is connected to Nodebb.

    Any help would be amazing. Thank you

    UPDATE

    Just letting yall know that i have figured it out and got my site up and running.

  • NodeBB and IIS as reverse-proxy

    6
    1 Votes
    6 Posts
    2k Views
    barisB

    Hi guys, sorry I can't be of any help. I don't have any experience with IIS, but you seem to be on the right track, the client's IP should be forwarded to the node backend by your webserver.

  • production setup with nginx

    1
    0 Votes
    1 Posts
    702 Views
    HARIOM VASHISTHH

    Just a moment...

    favicon

    (medium.com)

  • 0 Votes
    1 Posts
    761 Views
    HARIOM VASHISTHH

    All in One, Easy to understand – production ready guide for beginners and professionals.

    NodeJS, MongoDB, PM2 and NGINX installation and configuration for production server — ubuntu 16.04

    https://blog.cloudboost.io/nodejs-mongodb-pm2-and-nginx-installation-and-configuration-for-production-server-ubuntu-16-04-e2b65d82f5df

  • External link in category not working

    8
    0 Votes
    8 Posts
    2k Views
    R

    @radek
    nvm fixed

  • NodeBB Upgrade caused issues

    3
    0 Votes
    3 Posts
    1k Views
    M

    I've found the cause, the Wordpress SSO plugin was causing issues.

  • Disable New Sign Ups?

    2
    0 Votes
    2 Posts
    828 Views
    PitaJP

    You can disable local registration in the ACP. Relevant thread here: https://community.nodebb.org/topic/11810/how-do-you-disable-default-login-registration-and-enable-on-login-registration-through-sso-plugin

  • 0 Votes
    3 Posts
    3k Views
    J

    @taloche Thank you! I will try this out.

  • 0 Votes
    7 Posts
    3k Views
    PitaJP

    You should be able to disable registration in the ACP. That will still allow SSO.

    Edit: previous discussion

    Link Preview Image User registration only with SSO

    Hi everyone, Quick question, is it possible to disable the registration form, in order to allow registration by SSO only? Thanks for your help Christian

    favicon

    NodeBB Community (community.nodebb.org)

  • Problem with accents in Composer

    3
    0 Votes
    3 Posts
    831 Views
    B

    Thanks @PitaJ. Your reply helped me. My problem was corrected with nodebb-plugin-markdown plugin activation and nodebb-plugin-emoji plugin desactivation. Problem solved. Thanks again.

  • Solved / Unsolved badge

    Unsolved
    3
    0 Votes
    3 Posts
    943 Views
    H

    @julian Thank you!

  • 1 Votes
    1 Posts
    717 Views
    D

    Hi, does it possible to delete selected messages posted by custom user? I saw - it possible to delete multiple post in selected topic, and in users profile there is no checkboxes for delete what I want - only view of user posts or topics. How can I do it softly - I don't want to delete user with content. I can do it only by DB query? thanks in advance!