Skip to content

Technical Support

Need help with installing or configuring NodeBB? Look here.

4.8k Topics 26.5k 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. [image: youtubelogo.png] Setting up SendGrid mailer for NodeBB
  • NodeBB guides, how-to's and general tips and tricks

    83 Topics
    601 Posts
    Z
    not sure the plugin worked for firefox. saw a-z in the sort icon. when i used it, i expected the topics in the category would be sorted a-z. they werent
  • 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
    2 Posts
    852 Views
    R
    I fixed my own issue. Apparently some install scripts fail when run as root (or with sudo). I'm not sure why this is the case, but I got everything to work by running sudo chown -R ralph:www-data /path/to/nodebb && ./nodebb upgrade as a standard user.
  • Post sorting per category

    1
    0 Votes
    1 Posts
    307 Views
    H
    Under /admin/settings/post there are "Default Post Sorting" and "Default Topic Sorting" The issue is that I would like to make these settings per categori. Some sorted Oldest to newest and others sorted Newest to oldest. Is that possible to do, and if so, how to do it?
  • Can't login to admin when site is maintainance mode

    5
    0 Votes
    5 Posts
    666 Views
    H
    @PitaJ Now it works as it should. It is OK if I click on the botton. I don't know what happend last time. Many thanks, any how. Hans
  • How to let the user delete all his posts including his account?

    3
    0 Votes
    3 Posts
    484 Views
    T
    @julian Would it be possible to let a user delete his own account with the posts? Can't it just be just a small js function name change on the Delete account button? According the the GDPR and just usability wise, it would be better if the user could delete his posts. I'd appreciate it, if you or someone else sends a changed JS file if you got time - Thanks!
  • How to go to the admin page when NodeBB running in offline LAN

    9
    0 Votes
    9 Posts
    1k Views
    G
    @PitaJ Thank you and I will build a new internal image for that commit ~
  • quill plugin

    3
    0 Votes
    3 Posts
    650 Views
    julianJ
    @JJSagan I can't seem to reproduce the issue you're having with uploaded files, they seem to work on my development environment..
  • Solr Bad Request on /api/search

    2
    0 Votes
    2 Posts
    377 Views
    julianJ
    Hi there, what errors do you see in server-side?
  • Category view (lastpost.tpl) get user's group colour?

    1
    0 Votes
    1 Posts
    308 Views
    B
    I've been playing around with a new template and when view posts on a topic, I've managed to get it to colour the user's name with the same colour as the selected group as per their profile. Do you know how I can do this with the lastpost.tpl on category view? I've tried to do it the same way as I do with the post view, however when I look for the selectedGroup/selectedGroups array, I can't find it. Thanks in advance.
  • NGINX Reverse proxy

    12
    0 Votes
    12 Posts
    1k Views
    SimosS
    I've just checked, also for new users cover it look for /assets/images and not for /forum/assets/images
  • `unread-class` isn't set to 'unread' for sub categories

    3
    0 Votes
    3 Posts
    707 Views
    Y
    Report issue https://github.com/NodeBB/nodebb-theme-persona/issues
  • recentreplies.js Error causing problems

    Solved
    14
    0 Votes
    14 Posts
    1k Views
    PJ LegendreP
    I will notify the plugin's creator, thank you.
  • NodeBB MongoDB Replica Set Read Preference

    3
    0 Votes
    3 Posts
    775 Views
    barisB
    Your config looks fine, not sure why it is only reading from a single one. { find: "objects", filter: { _key: /user:/i, username: "admin" } This doesn't look like a query we do in core nodebb, do you have some plugins that run custom queries? This doesn't use the indexes properly should probably be { find: "objects", filter: { _key: /^user:\d+$/i, username: "admin" }
  • Add nav class on scroll

    3
    0 Votes
    3 Posts
    2k Views
    C
    @PitaJ No error. But after your reply looked again and saw what I guess is the default way of doing this on Nodebb. And with $(window).on('action:ajaxify.end', function( ) it works as it should. Thank you.
  • change from http://oldsite.com to http://newsite.com

    Solved
    2
    0 Votes
    2 Posts
    446 Views
    PitaJP
    All you should really need to do is change the url value in config.json and change the server name in your reverse proxy.
  • need help to modify css template codes

    9
    0 Votes
    9 Posts
    1k Views
    D
    @PitaJ Oh, I got it. But I tried and unfortunately it does not change the attribute. Plus, I found the value is the length of placeholder 's length. the default English placeholder is "Enter tags here, between 3 and 24 characters each.", that's why it is 50. I am using zh-CN, according to translation, it is 23 characters, so value is 23. However, one character Chinese is 2 English letter wide, to show the placeholder full, the value need to be 46. Can you fix it? thanks.
  • how to make updated language file effective?

    2
    0 Votes
    2 Posts
    427 Views
    D
    I have figured it out. nodebb need to be rebuilt and restart, simply restart does not load new language file.
  • category tags vs tags

    3
    1 Votes
    3 Posts
    572 Views
    D
    Thanks for the reply. from the screenshot, it looks like no way to assign it to a specific category, or in other places I might have missed? Does nodebb has global tags concept? meaning a tag can be used across all categories? thanks.
  • Custom Pages, and Recend Cards problem.

    10
    0 Votes
    10 Posts
    1k Views
    M
    @PitaJ said in Custom Pages, and Recend Cards problem.: @Michael-Pfaff just FYI it is a widget now. I don't know how you have it set up, but that may be what changed. That was it! Thanks.
  • How do I deploy NodeBB from Cloud9 on Digital Ocean?

    1
    0 Votes
    1 Posts
    353 Views
    T
    Hi Everyone, To be more specific about my issue, I want to deploy NodeBB from Cloud9 on Digital Ocean in order for it to run 24/7 and connect to the domain I purchased rather than the cloud9 URL (which requires me to sign in and run). More info about me: -I successfully set up NodeBB on Cloud9. -Bought domain from Godaddy which I have already set it up on Digital Ocean. -Wanting to connect NodeBB on Cloud9 to the domain I purchased. Thank you so much for all replies and helps.
  • Chat with all members of a group?

    3
    0 Votes
    3 Posts
    477 Views
    D
    @PitaJ Thanks. It was tough to find the discussion. Most results were about "group chat" not "Group chat".