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.
  • Type of user for NodeBB installation?

    12
    0 Votes
    12 Posts
    951 Views
    phenomlabP
    @pitaj Also confirmed. I built a NodeBB instance for someone this morning and used the exact same process described here.
  • Recent card old version???

    18
    0 Votes
    18 Posts
    2k Views
    dunlixD
    @onur-baran also the fav icon has to do with browser cache and memory etc, which is out of control of NodeBB. If you’ve determined it is part of NodeBB, report it.
  • Can't increase size of file uploads

    4
    0 Votes
    4 Posts
    533 Views
    L
    thanks for both suggestions I will give them a try
  • On v1.17 carousal slider issue

    3
    0 Votes
    3 Posts
    697 Views
    Varun Ganesh DV
    @dogs thank you Issue resolved
  • Can't edit all categories

    Solved
    3
    0 Votes
    3 Posts
    353 Views
    FrankMF
    @baris Thank you. I have found it
  • Error: User does not exist

    3
    0 Votes
    3 Posts
    563 Views
    B
    @nhl-pl I upgraded to 1.16.2 and deletion works for other users but not for 2 that tried to delete their own accounts. One of them wants the account to be deleted, the other one wants it to be restored. How do I deal with those cases?
  • Failed to delete a user if user has started a chat

    Unsolved
    3
    0 Votes
    3 Posts
    526 Views
    K
    @pitaj here you are https://github.com/NodeBB/NodeBB/issues/9503
  • Share This Post Option

    6
    0 Votes
    6 Posts
    575 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
    315 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
    734 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
    372 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
    407 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
    687 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
    433 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
    224 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
    928 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
    423 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
    686 Views
    C
    @pitaj thanks!