Skip to content

Technical Support

Need help with installing or configuring NodeBB? Look here.

4.7k Topics 26.1k 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
    196 Posts
    phenomlabP

    @baris updated to 3.7.2 and now just waiting for the plugin to be updated.

  • Translate quick reply texts

    Solved
    5
    0 Votes
    5 Posts
    176 Views
    LenkoL

    That was it! I didn't notice that button.

    Thank you very much 👌

  • help | Serve course full times

    Unsolved
    22
    0 Votes
    22 Posts
    991 Views
    phenomlabP

    @LEVI-HAVIV It really depends on what else is running on that server to be honest. Without that visibility, it's hard to say for sure.

  • Persona theme - navbar hides reply button

    Moved
    2
    0 Votes
    2 Posts
    249 Views
    LenkoL

    I've solved the problem adding a global footer text.

  • Skin Selector in User Setting

    Solved
    4
    0 Votes
    4 Posts
    155 Views
    T

    @baris it worked, flawlessly! Thank you!

  • Hiding Specific Topics from Public View

    Unsolved
    4
    0 Votes
    4 Posts
    180 Views
    crazycellsC

    @mschwartz thanks 👍 yes, we already have these categories... but unfortunately the topics I mentioned cannot be moved here because they belong to another category/sub-category.

  • Invalid CSRF on dev install

    Solved
    4
    0 Votes
    4 Posts
    554 Views
    phenomlabP

    @ufan0 Please see this thread

    Link Preview Image Invalid CSRF on dev install

    @小城风雨多 The command should still work. What is the output?

    favicon

    Sudonix | A one-stop-shop for all your technology questions (sudonix.org)

  • The register with email have bug after version 3 upgrade

    Unsolved
    8
    0 Votes
    8 Posts
    369 Views
    julianJ

    Can you show me a screenshot of the entire page? The console error suggests there are two submit buttons.

  • How to support multi-language forum pls ?

    Unsolved
    9
    1 Votes
    9 Posts
    1k Views
    Ronny KreuzbergR

    @Topper THank you, I am aware of that, just looking for a Forum software thats translatable. Wordpress and bbpress dont do the job so nicely.

  • limiting chat function for unverified users

    Solved
    14
    2 Votes
    14 Posts
    656 Views
    barisB

    Privileged users are administrators and moderators(including global moderators)

  • help | Adding an array to the user's db

    Unsolved
    15
    0 Votes
    15 Posts
    446 Views
    barisB

    I don't think you can send javascript functions, you would have to send a string and then run a command based on that string. A sample below

    // on the client socket.emit('admin.plugins.myPlugin.myCustomEvent', { data: 1 }, function (err, returnData) { if (err) { return alerts.error(err); // if server throws an error it will be displayed } if (returnData.log) { console.log(returnData.log); } }); // on the server const sockets = require.main.require('./src/socket.io/admin/plugins'); sockets.myPlugin = {}; sockets.myPlugin.myCustomEvent = async function (socket, data) { console.log('got data from client', data); return { log: 'this message will be logged client side' }; };
  • Translit slug

    25
    1 Votes
    25 Posts
    12k Views
    B

    @Nicolas Oh yeah, this shit messes up the indexing and Google search doesn't recognize the sitemap. I'm try use your plugin, but he not work with topic name.

    Solved
    To fix need change topicData.slug = translit(topicData.slug) to topicData.topic.slug = translit(topicData.topic.slug)

  • Invite e-mails not arriving

    Unsolved
    3
    0 Votes
    3 Posts
    159 Views
    Eduardo SilvaE

    @dave1904 Great, tks!

  • Forum: Can not "Mark As Read" with keyboard

    Unsolved
    7
    1 Votes
    7 Posts
    315 Views
    barisB

    You should be able to hit tab to go to the dropdown list and then use the arrow keys to navigate.

  • 0 Votes
    5 Posts
    218 Views
    DownPWD

    While waiting for version 3.5.0 which will add the new containers, we have solved the problem like this (with the help of @phenomlab 🙂 )

    if ($(window).width() <= 991) { // Check if the custom thread view button already exists in the bottom bar //$buttonContainer = $('.bottombar-nav.p-2.text-dark.bg-light.d-flex.justify-content-between.align-items-center.w-100'); if ($("#logged-in-menu").length > 0) { var buttonContainer = $('.bottombar-nav ul#logged-in-menu'); } else { var buttonContainer = $('.bottombar-nav ul#logged-out-menu'); } // Prepend the button to the selected container buttonContainer.prepend(threadViewButton); }
  • 0 Votes
    5 Posts
    221 Views
    G

    @phenomlab seems everything is fine? the whole config is a bit complicated with some very very secret things, so I may not able to show it here 😞

  • use Redis cache instead of in memory cache

    Unsolved
    7
    0 Votes
    7 Posts
    287 Views
    barisB

    @oplik0 yeah that's true, if they override lru cache then it would apply to most of the caches, but again it is probably not worth it and might slow things down.

  • 0 Votes
    5 Posts
    897 Views
    julianJ

    Currently posts.changeOwner socket call will let you change the owner of a post to a new user. There is no API call for this yet.

  • Necro function - DOM changes

    Solved
    7
    0 Votes
    7 Posts
    244 Views
    phenomlabP

    @baris Good spot - that works!

    Thanks

  • Global moderators unable to change email addresses

    Unsolved
    2
    1 Votes
    2 Posts
    110 Views
    barisB

    @alejandrocobo thanks for reporting. I created an issue to track https://github.com/NodeBB/NodeBB/issues/12057

  • NTFY: NodeBB

    24
    0 Votes
    24 Posts
    2k Views
    phenomlabP

    @julian Confirmed working - thanks.