Skip to content

Technical Support

Need help with installing or configuring NodeBB? Look here.

4.8k Topics 26.7k 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.
  • NodeBB shuts down

    Unsolved
    4
    0 Votes
    4 Posts
    680 Views
    y hY
    Worked Thanks
  • How do I update my custom theme?

    Moved
    7
    0 Votes
    7 Posts
    979 Views
    julianJ
    @jim-bridger said in How do I update my custom theme?: Does that mean my theme would be listed in everyone elses plugin list? It's a custom theme for my site, not something I want to publish Yes, that is correct. Because you've published it to npm, our package manager automatically picks it up as an available theme and offers it for download to any other NodeBB. You can set nbbpm.index to false in your package.json, but this would also remove the theme from your plugins list. The easiest thing to do would be to publish the theme under your own namespace (agian, with nbbpm.index set to false), and then install it via the command line, as @pitaj suggested. e.g. npm i @jimbridger/nodebb-theme-mytheme
  • Layout shift in 1.17.1

    Unsolved
    6
    0 Votes
    6 Posts
    798 Views
    julianJ
    @pitaj Markdown plugin should automatically append width and height for images (both local and external) in the output HTML, which should help resolve these issues. I think the real remaining cause of a viewport shift would be topic events. They're still rendered client-side right now.
  • Unwanted line feed

    Solved
    7
    0 Votes
    7 Posts
    754 Views
    FrankMF
    Explanation Normally, when i copied text from an terminal window and paste it into an post i will do four spaces before i insert the text. This works for me for a long time. After i switched to ubuntu & wayland i got the problem with unwanted line feeds. I do not know what triggers the problem Solution I will insert the text and use the code icon to format the text. That worked for me. Hope this helps someone with a similar problem
  • Voting for and against unregistered users

    Unsolved
    1
    1 Votes
    1 Posts
    219 Views
    J
    I have a forum with directories with no option to subscribe Is it possible to let guests vote for posts like 'liked' or 'disliked'
  • How to override plugin/widget templates from within a theme?

    Moved
    4
    0 Votes
    4 Posts
    2k Views
    PitaJP
    You can't override them from within your theme (themes are always lowest priority), but you can create a new plugin for overrides and set it as the highest priority.
  • Allow forum to be embedded on multiple domains?

    Solved
    8
    0 Votes
    8 Posts
    1k Views
    Jim BridgerJ
    @dunlix I'm already using a custom theme, but my site has it's own login system where the user is shown logged in at the top -- this would not be possible if i put it into a nodebb theme. Also session-sharing and iframe is already working perfectly.
  • nodebb setup config/scripted admin setup failing (ansible)

    Solved
    11
    0 Votes
    11 Posts
    1k Views
    B
    @pitaj Well, this info is golden. This clearly needs to be documented well and easily found. The usage message of ./nodebb setup --help should indicate the expected syntax and strikingly point out config.json is the wrong syntax in this case to be fed into ./nodebb setup. In the long run, there should be no special case or different syntax between node app --setup and ./nodebb setup. Thank you, @PitaJ, @Max-0 .
  • phpbb conversion leaves html/bb code

    Unsolved
    9
    0 Votes
    9 Posts
    991 Views
    N
    I'm going to start a new thread since this is getting nowhere and it is now about the plugin and not the outcome. https://community.nodebb.org/topic/15804/nodebb-plugin-import-of-phpbb-looping
  • phpbb >nodebb, admin/mods cannot edit

    Solved
    28
    0 Votes
    28 Posts
    4k Views
    N
    @keng-her Thank you. I'll back everything up and try that and report back.
  • Expanded categories without plugin?

    Solved
    19
    0 Votes
    19 Posts
    2k Views
    N
    @nodeham Thank you for all of the help. I will start a new thread for the next problem I am seeing.
  • Introduced three columns style and page requires a refresh

    Moved
    6
    0 Votes
    6 Posts
    686 Views
    paladin884P
    @pitaj that's it! Oh gosh, I literally couldn't see the connection of that ID. But now it all makes sense. Thank you!
  • Add custom stylesheet inside header.tpl

    Moved
    5
    0 Votes
    5 Posts
    789 Views
    PitaJP
    @paladin884 what do you mean that won't work? What did you try? Here's me importing a CSS fine directly into less in one of my plugins: https://github.com/pitaj/nodebb-plugin-calendar/blob/2b9893dad12ee59bce494fe0fb24342f66cf9e67/public/calendar.less#L1 Then you just need to make sure your less is defined in plugin.json: https://github.com/pitaj/nodebb-plugin-calendar/blob/2b9893dad12ee59bce494fe0fb24342f66cf9e67/plugin.json#L31 You can instead just add it to your plugin.json under css like so: { ... "css": [ "path/to/stylesheet.css" ] } Either of those options will result in it being added to the main css file loaded in header.tpl
  • Get my hidden Groups via API

    Unsolved
    1
    0 Votes
    1 Posts
    264 Views
    Alexey GelchinskyA
    I'm trying to fetch a list of all groups an active user belong using /api/users/{slug}/groups OR /api/groups in either case I get only visible groups. Is it a bug (as user itself should be able to get all his groups) or I use the wrong API call?
  • FieldPath cannot be constructed with empty string

    Unsolved
    5
    0 Votes
    5 Posts
    2k Views
    J
    @dunlix said in FieldPath cannot be constructed with empty string: @joker-0 The latest version is 1.17.1. not 1.17.0 which fixed that issue.. thanks
  • Try to post using API (and failing)

    Solved
    9
    0 Votes
    9 Posts
    1k Views
    AntosikA
    @phenomlab oh, okay ^^" The question currently marked as unsolved
  • anti-flood

    Unsolved
    3
    -1 Votes
    3 Posts
    399 Views
    dunlixD
    @macfan so you came to the NodeBB community forum to complain about the preferences of a admin running a completely different forum and demanded that people that have no ties whatsoever to that forum change jt for you? Why not talk to the admins on that site, it’s not from here.
  • This topic is deleted!

    Unsolved
    2
    0 Votes
    2 Posts
    32 Views
  • Can't edit or create topics

    Unsolved
    2
    0 Votes
    2 Posts
    396 Views
    dunlixD
    @freelancer screenshots
  • Edit, Create, Manage Post not working

    Unsolved
    2
    0 Votes
    2 Posts
    414 Views
    FreelancerF
    My System is Windows, MongoDB also this is the hash or output of git rev-parse HEAD: 902da5402918dbe99c5f298ce769b0b1994739b5 I have switched theme it doesn't fix, run upgrade, dev mode even that doesn't help.