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-theme-timuu] Timuu

    Moved
    4
    0 Votes
    4 Posts
    1k Views
    zhivkoangelovZ
    I reviewed some of the Timuu forks and one of them was working better. It seems that the problem is the theme does not reference the most up-to-date version of Persona theme. When I put persona.js file into the /lib folder the problem was solved. So, if anyone wants to use the theme: Make a fork Copy up-to-date version of persona.js and autohiding.js files into the /lib folder of the theme
  • Installation problems

    Unsolved
    5
    0 Votes
    5 Posts
    582 Views
    gotwfG
    @Orca As noted by @PitaJ above, you will likely be best served setting up a repository and installing from mongodb direct. At least in my experience.
  • 1.19.5 - vips/vips8 problem

    Unsolved
    2
    1 Votes
    2 Posts
    2k Views
    julianJ
    @FrankM Seems an issue with sharp and libvips, so upstream from NodeBB. Unfortunately nothing we can do here.
  • Plugins not listed in 1.19.5

    Unsolved
    12
    1 Votes
    12 Posts
    2k Views
    FrankMF
    I just updated a forum, the problem is solved. The plugins are listed. But have another problem, but will open a separate thread for it.
  • Confusion about "privileges" configurations

    Unsolved
    2
    1 Votes
    2 Posts
    333 Views
    PitaJP
    The admin privileges selects what groups and users are allowed to access and configure certain things in the ACP. For instance, allowing someone the Categories privilege gives them the ability to modify, add, and remove categories in the ACP.
  • Issue with nodebb-plugin-gdpr / emoji after upgrade to 1.19.2

    Unsolved
    6
    0 Votes
    6 Posts
    1k Views
    phenomlabP
    @julian Done Installed 1.1.0 | Latest 1.0.12 Seems to be working.
  • View a contact page within the bootbox alert in nodebb

    Unsolved
    4
    0 Votes
    4 Posts
    682 Views
    J
    @julian What do I call the boot method؟
  • User Ip list

    Unsolved
    3
    0 Votes
    3 Posts
    579 Views
    cagatayC
    @phenomlab thank you, very usefull.
  • conflicts between -hashtags and -extended-markdown plugins

    Solved
    10
    0 Votes
    10 Posts
    1k Views
    robin4002R
    Thank you for fixing it in nodebb-plugin-hashtags! I was very busy so I didn't have the time to fix it in my plugin...
  • Sub-Categories Bug

    Unsolved
    4
    0 Votes
    4 Posts
    538 Views
    cagatayC
    @cagatay Fixed by @kurulumu-Net thank you. [image: 1646654218773-36da8ed8-f675-45a6-b8fa-6e77de79f4ee-image.png]
  • How do I use "verified users" group?

    Unsolved
    4
    0 Votes
    4 Posts
    636 Views
    julianJ
    @Jim-Bridger moderators don't have the ability to adjust group membership, unless they also happen to be owners of said group (which if you're creating a custom group, is doable) Then they can add and remove users from the group details page.
  • How does NodeBB detect spiders?

    Unsolved
    2
    0 Votes
    2 Posts
    368 Views
    barisB
    It looks at the user agent, https://github.com/binarykitchen/spider-detector/blob/master/index.js#L2-L28
  • 1.19.3 Support Thread

    32
    6 Votes
    32 Posts
    5k Views
    phenomlabP
    @crazycells Thanks !
  • Twitter Links

    Unsolved
    10
    0 Votes
    10 Posts
    1k Views
    cagatayC
    problem is solved, thank you. plugin worked PS thanks for your helping @kurulumu-Net
  • NodeBB on Oracle VPS [I need help!]

    Unsolved
    4
    0 Votes
    4 Posts
    622 Views
    oplik0O
    Your issues with firewall are likely because Oracle is, essentially, using firewalld rules for all their images, even ones that don't have it included. So if you are running on Ubuntu, and trying to use ufw like most tutorials will recommend you do, it will do nothing with the default iptables entires and be essentially useless. And the bigger problem is that some of their rules are required to start to VMs (they need iSCSI access rules on boot) The easy solution is to just give in to Oracle's config and install firewalld: sudo apt install firewalld sudo systmctl enable --now firewalld (And ensure ufw is disabled) You can then manage rules using firewall-cmd. For example: sudo firewall-cmd --permanent --add-service={http,https} sudo firewall-cmd --reload Will allow http/https traffic. The second option is the one I assume you tried: fix iptables and use ufw. But this is a bit more complex than it seems. First issue is that IIRC the iptables rules will be applied again on reboot. Now, cloud init can be disabled, but there is another issue - the iSCSI rules. The official Oracle workaround for ufw potentially making the VMs unbootable is "don't use ufw" (https://docs.oracle.com/en-us/iaas/Content/knownissues.htm#ufw), and while you should be able to just ensure everything is correctly configured with ufw, I honestly stopped bothering. firewalld works fine for me, so, like Oracle, I would recommend that route instead. Additionally there is separate OCI networking and their firewall. You have to remember that Network Security Groups override Security Lists, so if you have one assigned to your VNIC, you need to edit it instead of the subnet-wide SL. If there is something else specifically you need help with you'll need to give more details - this post is just based on a guess you have the common issues.
  • Content is Invisible After 1.19.2 Update

    Unsolved
    19
    0 Votes
    19 Posts
    2k Views
    AlekseiA
    Visiting your forum now, it appears to be working fine. Are there still issues on your end? I'll be monitoring the status. I can't reproduce the issue. It happens occasionally. I always access it via https://forum.c4d.space/ and this is the URL in config.json
  • 1.9.X installation fails

    Unsolved
    6
    0 Votes
    6 Posts
    768 Views
    julianJ
    @zhivkoangelov should be fixed on latest master already
  • Connect to MongoDB using TLS

    Solved
    4
    1 Votes
    4 Posts
    512 Views
    gotwfG
    @zhivkoangelov Cool. Thanks for sharing. I started to delve into this several months (years?) back but got distracted w/other things before actually making any progress. Now I shall bookmark this puppy.
  • What algorhythm is used for encrypting user passwords?

    Solved
    31
    1 Votes
    31 Posts
    3k Views
    julianJ
    @pyc4 said: I was thinking it is possible to generate hash from given password that is exactly the same as the hash written to database. Only if you use the same salt, but you don't have the salt, so therein lies the problem
  • Copy forum settings from test to production environment

    Unsolved
    1
    0 Votes
    1 Posts
    249 Views
    zhivkoangelovZ
    Hello, I have a test NodeBB forum, running on Digital Ocean. In this instance, I am changing certain settings through the Admin panel: Installing and activating plugins Modifying settings such as list of categories I am planning now to install a new forum instance, production one, also on Digital Ocean. What is the best way to copy forum settings from test to production (just plugins and settings, without users and posts)? Note that I would like to make this "settings update" on a regular basis. Thank you.