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.
  • Share This Post Option

    6
    0 Votes
    6 Posts
    658 Views
    dunlixD
    @teemberland OHHH, the Share this post... I thought you were talking about my comment. That is in settings in the ACP, there are other plugins that add sharing options.
  • Wht i this

    4
    0 Votes
    4 Posts
    356 Views
    phenomlabP
    Looks like that's just some CSS being overridden
  • The forum requires code at each login to the management interface

    5
    1 Votes
    5 Posts
    758 Views
    dunlixD
    @ab Your welcome. In this community forum, it is referred to as the ACP.
  • Upgrade to v1.17.0 invalid-event

    2
    0 Votes
    2 Posts
    408 Views
    FrankMF
    Uups, sorry. Problem solved. Missing "NodeBB is rebuilding front-end assets" was the problem.
  • Upgrade to 1.17 failed

    4
    0 Votes
    4 Posts
    451 Views
    phenomlabP
    Ok. Cache issue. Cleared cache, and back in play (almost)
  • How I can write comments inside TPL file?

    5
    0 Votes
    5 Posts
    788 Views
    K
    many thanks @pitaj
  • Question about forum alerts

    8
    0 Votes
    8 Posts
    1k Views
    barisB
    npm i [email protected]. Then rebuild and restart nodebb.
  • Requirement: Access front-end values in back-end methods

    3
    0 Votes
    3 Posts
    488 Views
    dogsD
    @arc002 I don't really know, if this will help you, but: [image: 1618838034095-bildschirmfoto-2021-04-19-um-15.13.41.png] If you change e.g sorting inside recent-Page from All Topics to New Topics the page refreshes and the URL turns from https://nodebb.development.fail/recent to https://nodebb.development.fail/recent?filter=new Once the page reloads, your hook filter:topics.get should be fired again. But in this case, with the filtering changed via dropdown. You have the get parameter ?filter=new to work with serverside. Maybe this is an option for you. You can use your template in combination with javascript to trigger an .change() or .click() -Event on your custom dropdown menu. Here is a little snippet. $(window).on('action:ajaxify.end', function(data) { let currentUrl = $(location).attr('href'); $('div#content').prepend('<a href="#" id="reloadTrigger">This is a example</a>'); $('a#reloadTrigger').click(function(){ window.location.href = currentUrl + "?filter=true"; }) }); This prepends a a-Element before content-Div: [image: 1618838869721-bildschirmfoto-2021-04-19-um-15.27.38.png] Once you click on This is a example the url turns from https://nodebb.development.fail/ to https://nodebb.development.fail/?filter=true And your hook filter:topics.get should be fired again. Now you could work with the GET-Parameter filter=true. Hope this helps and inspired you. Cheers
  • Categories drop-down empty after migration to 1.16.x

    1
    0 Votes
    1 Posts
    243 Views
    K
    Hi Community, I've recently upgraded from 1.12.x to 1.16.x and I've done it first on a testing environment and, upon success, on production environment. Today, after a few days from the upgrade, I've realized that on the production instance the list of categories from category-drop down menu, is completely missing either on front-end (typical case when you want to move a thread) and on back-end (typical case when you want to set privileges). Production instance(left) Vs Test instance (Right) [image: 1618838887962-comparins_prod-test.jpg] I've no clue what could be the case and how to get it fixed. Thanks, Riccardo
  • How to make custom JS persist

    5
    0 Votes
    5 Posts
    997 Views
    phenomlabP
    @dogs this worked a treat - thanks. For anyone else who might be looking for something similar, here's a simple scroll to top function that you can place into your Custom JS // Scroll to top button $(window).on('action:ajaxify.end', function(data) { var btn = $('#btt'); $(window).scroll(function() { if ($(window).scrollTop() > 300) { btn.addClass('show'); } else { btn.removeClass('show'); } }); btn.on('click', function(e) { e.preventDefault(); $('html, body').animate({scrollTop:0}, '300'); }); }) Then place this into your Custom Header <a id="btt"><i class="fas fa-chevron-up"></i></a> Obviously, you would need to provide some CSS to style this. An example of this can be found on https://phenomlab.com
  • Putting my site's header/navigation elements above NodeBB's?

    18
    0 Votes
    18 Posts
    2k Views
    dunlixD
    @pitaj WHHAAAT? NEXT WEEK? [image: tenor.gif]
  • NodeBB Plugin reactivated after container re-creation.

    3
    0 Votes
    3 Posts
    449 Views
    F
    @pitaj Yes, this is why I don't understand. And I only stop the nodebb container, not the db container.
  • help!

    7
    0 Votes
    7 Posts
    780 Views
    C
    @pitaj thanks!
  • Links in Digest Emails are broken

    10
    0 Votes
    10 Posts
    957 Views
    barisB
    @dcook, we are aiming for next wednesday.
  • How to install NodeBB with the official Docker image

    1
    0 Votes
    1 Posts
    552 Views
    A
    Hi everyone !! I am trying to install NodeBB in my local environment to test how everything goes but I am unable to perform the installation. I manage to do docker run nodebb/docker And it says that is live in 4567. However, when I launch localhost:4567 its stuck in a loading white screen. I also tried this installation with docker guide, but I am not able to install Redis, and it is the first step: When I try any of these commands: docker run --name my-forum-redis -d -p 6379:6379 nodebb/docker:centos-redis docker run --name my-forum-redis -d -p 6379:6379 nodebb/docker:ubuntu-redis It returns: Error response from daemon: manifest for nodebb/docker:centos-redis not found: manifest unknown: manifest unknown Does anybody know how to perform the installation with Docker? Thanks in advance.
  • Infinite scrolling issue

    6
    0 Votes
    6 Posts
    678 Views
    K
    @baris thanks a lot for the input. The issue was independent by the theme (slick was 1.3.8) but it seems that removing the height: 100% has fixed the issue. If it gets back I'll let you know. For the time being, thanks a lot!
  • This topic is deleted!

    4
    0 Votes
    4 Posts
    330 Views
  • howto escape a slash in tags?

    1
    0 Votes
    1 Posts
    233 Views
    murcsM
    someone wanted to tag a topic with 2021/22 but it was shown as 202122.  we tried single and double quotes as well as a \ to escape a / (aka. slash) but all we got from 2021\/22 was 2021\22 - which is far more than 202122.  any ideas?
  • Tags endpoint does not display tags defined in the admin dashboard.

    3
    0 Votes
    3 Posts
    522 Views
    JULIUS NGIGIJ
    @baris Thanks!
  • NodeBB + MongoDB + Scaling (k8s)

    16
    0 Votes
    16 Posts
    2k Views
    S
    @antosik said in NodeBB + MongoDB + Scaling (k8s): @PitaJ I'm not against it ^^. Just want to research a bit before giving AWS more money. :d @baris So, we need to try: implement something like src\database\redis\pubsub.js in mongo; check out socket.io-adapter-mongo and @nodebb/mubsub packages? UPD. Found an interesting thing - maybe we can use watch + changeStream to implement the pubsub ? What's your overall goal? I have a feeling that you are giving AWS way more money than you should already. If the goal is to go big without wasting money, this isn't the approach. Unless you are doing something in the billion hits a month range, I don't think that this approach can be cost effective at all. So if you want to give AWS money just for fun, then you might as well give more. If you want to be cost effective, then setting yourself up for scaling will require more scale than will ever be practically needed.