Skip to content

Technical Support

Need help with installing or configuring NodeBB? Look here.

4.7k Topics 26.2k 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
    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
    110 Views
    crazycellsC

    In case anyone else might be intrested, I fixed this color problem using these codes:

    .category-1 , .category-70 , .category-120 { .category-children-item .fa-caret-right { color: #ff9800 !important ; } } .category-111 { .category-children-item .fa-caret-right { color: #e91e63 !important ; } } .category-2 , .category-77 , .category-78 , .category-126 , .category-127 , .category-132 , .category-93 , .category-115 { .category-children-item .fa-caret-right { color: #4caf50 !important ; } }

    Basically I had to name each category separately... So, if there is any suggestion to shorten the code, I would love to hear... 🤣

  • Send email notification to admin from new registered users.

    Unsolved
    7
    0 Votes
    7 Posts
    128 Views
    barisB

    I've updated this plugin to nodebb 3.2 and up, new version is 3.0.0.

  • Bulk move users to group?

    Moved
    2
    1 Votes
    2 Posts
    79 Views
    barisB

    You would have to run a custom script like below. Place it in your nodebb folder, change the group name your special access group and run it with node myscript.js. It will add all users who have 10 posts or more into that group.

    'use strict'; const nconf = require('nconf'); nconf.file({ file: 'config.json', }); nconf.defaults({ base_dir: __dirname, views_dir: './build/public/templates', upload_path: 'public/uploads', }); const db = require('./src/database'); const groupName = '<Replace with your groupname>'; db.init((err) => { if (err) { console.log(`NodeBB could not connect to your database. Error: ${err.message}`); process.exit(); } addUsersToGroup((err) => { if (err) { console.error(err); process.exit(); } console.log('done'); process.exit(); }); }); async function addUsersToGroup(callback) { const user = require('./src/user'); const groups = require('./src/groups'); const batch = require('./src/batch'); // check if target group exists const exists = await groups.exists(groupName); if (!exists) { return callback(new Error('group does not exist')); } try { const now = Date.now(); await batch.processSortedSet('users:joindate', async (uids) => { const userData = (await user.getUsersData(uids)) .filter(u => u && u.postcount >= 10); await db.sortedSetAdd( `group:${groupName}:members`, userData.map(() => now), userData.map(u => u.uid) ); }, { batch: 500, }); const memberCount = await db.sortedSetCard(`group:${groupName}:members`); console.log('total count', memberCount); await db.setObjectField(`group:${groupName}`, 'memberCount', memberCount); await db.sortedSetAdd( 'groups:visible:memberCount', memberCount, groupName, ); callback(); } catch (err) { callback(err); } }
  • 0 Votes
    2 Posts
    58 Views
    phenomlabP

    @ursyaathi You'd be better placed using SSO for that - see https://community.nodebb.org/topic/17484/a-more-standardised-sso-implementation/2?_=1709300209014

  • Navigating to specific post

    Solved
    3
    0 Votes
    3 Posts
    109 Views
    R

    Thanks!, I was able to debug the issue.

  • Targeted Multi-User tagging

    Unsolved
    14
    0 Votes
    14 Posts
    430 Views
    crazycellsC

    @baris i know it is nothing urgent, but looking forward to having this addition 😄

    Link Preview Image Targeted Multi-User tagging · Issue #244 · julianlam/nodebb-plugin-mentions

    I suggest the usage of @everyone and @here to notify all users in the forum and on the topic respectively... please see this: https://community.nodebb.org/topic/17283/targeted-multi-user-tagging

    favicon

    GitHub (github.com)

  • Hiding a widget in a custom page

    Moved
    8
    0 Votes
    8 Posts
    219 Views
    Rui RamosR

    Thanks @baris that option worked like a charm.

  • Testing nodebb-plugin-sso-google

    Solved
    14
    0 Votes
    14 Posts
    420 Views
    ww9riversW

    @baris Thank you for the quick fix! It works now.

  • Clean Up Popular Topics

    Solved
    5
    2 Votes
    5 Posts
    95 Views
    T

    @baris gotcha, i'll give this one a shot. TY!

  • Updating meta tags in a custom topic template

    Solved
    3
    0 Votes
    3 Posts
    91 Views
    R

    Thanks, that works perfectly

  • NodeBB in inframe throws invalid csrf token

    Moved
    6
    0 Votes
    6 Posts
    564 Views
    E

    were you actually able to solve that? Running into a very related problem here (Nodebb running in an iframe, authenticated through session-sharing plugin. Users are logged in but any interaction results in an 403 / invalid csrf token... I'm running the board on a different domain than the embedding page.

  • 0 Votes
    5 Posts
    185 Views
    C

    @julian Thank you so much for getting back to me, I'll give that a shot!

  • Customize email titles

    Solved
    8
    0 Votes
    8 Posts
    268 Views
    S

    this was fixed in NodeBB v3.6.6
    🙂

  • 3.0.0 Upgrade Support Thread

    39
    1 Votes
    39 Posts
    2k Views
    barisB

    @Sebastián-Cisneros maybe you are missing this file in your composer-default plugin?

    It was added in nodebb 3.4.0 https://github.com/NodeBB/NodeBB/issues/11949

    So add that file into plugin.json of quill,

    "composer/post-queue.js": "../nodebb-plugin-composer-default/static/lib/composer/post-queue.js",
  • Error getaddrinfo EAI_AGAIN after running out of memory

    Solved
    8
    1 Votes
    8 Posts
    514 Views
    dave1904D

    Fortunately, the problem has been solved. I don't know yet if DigitalOcean has changed anything, but the last thing I did were these prompts for diagnostics:

    ping 8.8.8.8 ping google.com dig google.com dig google.com @1.1.1.1 cat /etc/resolv.conf systemd-resolve --status cat /etc/*release
  • 0 Votes
    2 Posts
    65 Views
    barisB

    Make sure you add jobsDisabled: true to all the machines except one so they don't run jobs.

    That error is usually fine since multiple machines will try to write out their analytics at the same time. The ones failing will retry and it will work on the second try.

  • 0 Votes
    7 Posts
    227 Views
    phenomlabP

    @enzo said in Displaying an image when the topic is shared on social media.:

    (btw, I'm using the S3 plugin, so all images are hosted there, not sure if this affects the behavior)

    This is a good point. Can the S3 bin be viewed publicly? If not, then this may restrict the ability to retrieve the image. On checking the URL from @baris, there is nothing wrong with this

    f38e1a48-de98-4b93-a512-a7c2bb4e138d-image.png

    The same applies to mine

    7415f46b-fa3e-4d71-b835-e5ad2781f888-image.png

    Are you using any browser plugins that could potentially alter the result?

  • Migrating existing forum from / to a subpath

    Solved
    2
    0 Votes
    2 Posts
    81 Views
    barisB

    That should be it, all the paths in template use {config.relative_path} as a prefix so things should work as normal

  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    5 Views
  • Login failing, "likely due to an expired session."

    Unsolved
    14
    0 Votes
    14 Posts
    446 Views
    M

    Are you able to make the appropriate changes in our docs?

    Yes, can do, I should have something ready to go soon-ish.

    [edit]
    https://github.com/NodeBB/docs/pull/89
    [/edit]