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 VPS setting requirements

    Unsolved
    4
    0 Votes
    4 Posts
    1k Views
    PitaJP
    @Kosta-Tko conflicts are very unlikely.
  • NodeBB Start Up Help

    9
    0 Votes
    9 Posts
    3k Views
    사다리하하
    @PitaJ thanks~~ a lot -0-
  • Visiting administrator users pages crashes the Nodebb - 503

    6
    0 Votes
    6 Posts
    4k Views
    Pramvir RatheeP
    @julian it persists even after disabling it Yes the problem was with plugin, but my data did not got imported completly, after 57k topics now its impoting only 1 topic in 1 minute. What should i do now ?
  • NodeBB Install on DigitalOcean Not Working

    8
    0 Votes
    8 Posts
    4k Views
    I
    @Arindam-sarkar remember: you need open firewall config for default nodebb port http://nodebb.readthedocs.io/en/latest/installing/os/centos.html Assuming you kept the default port setting, you need to allow it through the firewall. firewall-cmd --zone=public --add-port=4567/tcp --permanent firewall-cmd --reload
  • Live editing - themes and templates?

    11
    0 Votes
    11 Posts
    4k Views
    TaLocheT
    @julian thanks that's good to know. I'll do as @pichalite recommended and fork the theme then. Thanks!
  • Domain issues?

    5
    0 Votes
    5 Posts
    2k Views
    T
    @Velocification said in Domain issues?: I am using A records but now i get this: http://i.imgur.com/4NAZDE7.png Am i doing it right? A 503 indicates that you are reaching the webpage properly, and the server is reporting an error. Try restarting the server/services to see if that helps.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    15 Views
  • Issue domain name

    4
    0 Votes
    4 Posts
    2k Views
    ZerGabrielZ
    Thank you all for the help, did. Debian GNU/Linux Jessie: sudo service nginx stop Code: server { listen 80; server_name forum.mydomainname.ru; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_pass http://127.0.0.1:4567/; proxy_redirect off; # Socket.IO Support proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } } You need to paste the code in: /etc/nginx/sites-enabled/default sudo service nginx start
  • Can't create new posts, reply to topics.

    Unsolved
    7
    1 Votes
    7 Posts
    3k Views
    PitaJP
    @ciber96 can you try: ./nodebb stop ./nodebb build ./nodebb dev In your terminal and see if that helps?
  • This post is deleted!

    14
    1 Votes
    14 Posts
    5k Views
    T
    @jarey This fixed the issue! Thanks.
  • New install leaves me with session mismatch + invalid csrf

    28
    0 Votes
    28 Posts
    15k Views
    J
    @Pramvir-Rathee here is my current Nginx config for the site. server { client_max_body_size 40M; listen 443 ssl; server_name community.bundystl.com; ssl on; ssl_certificate /etc/letsencrypt/live/bundystl.com/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/bundystl.com/privkey.pem; ssl_stapling on; ssl_stapling_verify on; ssl_protocols TLSv1.2 TLSv1.1 TLSv1; ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH'; ssl_prefer_server_ciphers on; ssl_session_cache shared:SSL:10m; ssl_dhparam /etc/ssl/certs/dhparam.pem; add_header Strict-Transport-Security "max-age=31536000; includeSubdomains"; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_pass http://10.254.0.35:4567; proxy_redirect off; # Socket.IO Support proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } } server { client_max_body_size 40M; listen 80; server_name community.bundystl.com; rewrite ^ https://$server_name$request_uri? permanent; }
  • bug report ADMIN CP -> Advance -> Database

    3
    0 Votes
    3 Posts
    2k Views
    julianJ
    Thanks @dwatley for your insight
  • Invalid CSRF Token (docker kubernetes, no Nginx)

    6
    0 Votes
    6 Posts
    4k Views
    julianJ
    and this port then sends this to docker with port 4567. I have no nginx involved anywhere. How can I make login work in my case? I'm not familiar with Docker, but something is acting as reverse proxy. You'll have to figure out what it is, and add that header in appropriately.
  • Deleting null posts on DB

    2
    0 Votes
    2 Posts
    1k Views
    E
    Uppppppp
  • Assigning user group after registration

    3
    0 Votes
    3 Posts
    2k Views
    M
    I must've missed 'Default user settings' part. Thanks!
  • Group posts limit or auto scroll

    1
    0 Votes
    1 Posts
    808 Views
    T
    Currently it looks like the groups only load 10 posts and that is it, is there anyway to turn on auto scroll or at least increase this limit? Thanks Ted
  • How to install and setup NodeBB?

    5
    0 Votes
    5 Posts
    4k Views
    H
    @Waqass-Khalid As of date is it the only option available? shared hosting still not possible? Not unless the shared hosting provider gives you some command line access and will let you install nodejs, and run several npm commands. Plus they have to have MongoDB or Redis access for database. Most shared hosting providers don't have the software necessary for running nodebb, and they won't let you install it.
  • site logo not uploading to /uploads/system

    6
    0 Votes
    6 Posts
    2k Views
    T
    @julian said in site logo not uploading to /uploads/system: Agreed, that sounds like a prudent course of action. Done: https://github.com/barisusakli/nodebb-plugin-imgur/issues/29
  • How to browse two or more tags topic ?

    1
    3 Votes
    1 Posts
    1k Views
    Pramvir RatheeP
    I want to browse two tags topics in one page, which url should i put ? For example tags are anatomy surgery Now we know we can separately browse two with following urs /tags/anatomy and /tags/surgery But i want to filter the topics with both tags i tried something like /tags/anatomy+surgery */tags/anatomy&surgery but none of them work. is there anyway i can filter topics with two or more tags ?
  • This topic is deleted!

    2
    0 Votes
    2 Posts
    57 Views