Skip to content

General Discussion

A place to talk about whatever you want

3.9k Topics 23.8k Posts
  • NodeBB + Redis for production

    5
    0 Votes
    5 Posts
    3k Views
    P
    @ffmad you can contact them at [email protected] to discuss details
  • New Relic Monitorring?

    4
    0 Votes
    4 Posts
    1k Views
    ?
    @julian I'm sure with enough community-driven interest and a wave of emails we could get them to change their ways
  • custom 404 page?

    7
    0 Votes
    7 Posts
    3k Views
    frissdiegurkeF
    Please take a look at the docs: https://docs.nodebb.org/en/latest/themes/create.html#child-themes
  • NodeBB v1.0.0 and email settings.

    Unsolved
    6
    1 Votes
    6 Posts
    4k Views
    Tracker1T
    @Gaurav-Grv-Robinson It looks like NodeBB uses the nodemailer package under the covers, but the UI may only present SMTP transport options. Your best bet is to use an SMTP server that's configured to listen/login/relay email on your behalf, this is a little different than a mail spooling system that in the end may relay, or otherwise send directly. If you have an inbound mail server that also has smtp for outbound, use that. I tend to just use SendGrid (hosted SaaS mail delivery) for my outbound emails, because delivery rates come out much better. There are other services, and depending on where you are hosting, they may offer one.
  • 5 Votes
    10 Posts
    4k Views
    P
    good timing
  • Are there any plugins or themes that change the way the reply box works?

    4
    1 Votes
    4 Posts
    2k Views
    nhl.plN
    You can hide composer (red button with +) and chat (user avatar as a button) windows by clicking on their respective buttons in the bottom right corner of the screen. Click again to show window and see your own content. Try to browse forums when composer is opened. This is one more possible action to do.
  • NodeBB 0.9.4 to 1.0.0 changes and how to upgrade ?

    4
    0 Votes
    4 Posts
    2k Views
    frissdiegurkeF
    @wellenreiter Actually the new version is 1.0.0, the new branch is called v1.x.x as you mentioned. This is a big difference
  • Question about how nodebb works

    4
    0 Votes
    4 Posts
    2k Views
    BriB
    @svetlana Yes, sandboxing is quick testing. And yes, you have it right, If you keep regular backups of mongo in that setup, you'll be fine (along with saving copy of your config, to be complete). If you want to really be good at deploying and upgrades, then at the bare minimum you should know how git works, how to change node versions, and how to set up / back up mongo. Everything else has pretty much been scripted out. Most of this stuff is either in the wiki or on this forum, you just have to look a little
  • Best cheap host for a newbie?

    4
    0 Votes
    4 Posts
    2k Views
    yariplusY
    It should work, but I would just do a fresh install on the new machine, you'll need to install the dependent programs anyway, and the rest of the install is fairly painless. After that, you can just copy your changed files and/or database dump.
  • 0 Votes
    1 Posts
    1k Views
    S
    hello i love this forum software and want to give it a hug but the thing that's driving me crazy is when i type too much, it goess off the screen. (then if i press the up arrow to maximize the reply box, i cant see on the screen what the other person wrote.) is there a plugin or theme that changes this reply box to just be a normal part of the page.. .or works in some other way so it's easier (something besides taking over the full screen / being too small)? also, which one should i be searching for, a theme or a plugin for this? i tried searching a lot but havent had much luck, what words should i be searching for in the future in case someone makes something? thank you
  • Congratulations!

    1
    0 Votes
    1 Posts
    550 Views
    S
    That is awesome
  • NodeBB Theme

    Solved
    4
    0 Votes
    4 Posts
    2k Views
    Gaurav Grv RobinsonG
    Oh, thanks a ton.
  • What is the purpose of joining a Group?

    Solved
    8
    0 Votes
    8 Posts
    4k Views
    E
    @baris said: @exodo said: Would be nice to have a group board You can do this manually, just create a category for that group and only allow that group to find/access/post in that category. But it wont show on group page like some special thing I think it would be great to link a group to a category because that qay group page could show some great info about that category like active threads, top poster of the group or last threads. Nowadays it show all people post wich is not relevant at all
  • I do not understand the kind of problems

    11
    0 Votes
    11 Posts
    4k Views
    P
    @nhl.pl said: Error: ENOENT, open means permission problem. NodeBB can't read file. You have a problem with a theme. It could be also something on npm level or even operating system level. Please always make backups and use them in such critical situation. I made changes to fix the problems in the above file. I could not understand the reason for the improvement
  • Why did you choose NodeBB?

    11
    0 Votes
    11 Posts
    4k Views
    M
    @yariplus @psychobunny pls read this https://community.nodebb.org/topic/7996/public-apology-nodebb-staff-must-read
  • Public Apology [NodeBB Staff Must Read]

    1
    0 Votes
    1 Posts
    982 Views
    M
    Hello! I just came to apologize. For? Spreading IP tracers. Why are you sorry? I know its wrong. Please forgive me. NodeBB is
  • What are the changes in nodebb 0.9.4?

    9
    0 Votes
    9 Posts
    3k Views
    L
    0.9.4 problem: https://github.com/NodeBB/NodeBB/issues/4264
  • Setting up email

    9
    0 Votes
    9 Posts
    7k Views
    julianJ
    I recommend SendGrid We support many via plugins, sendgrid, mailgun, mailjet, postageapp...
  • Mandrill Changes

    9
    0 Votes
    9 Posts
    4k Views
    julianJ
    @Kowlin Eh, the way I see it, email and other assorted protocols were developed back when there were no other protocols or similar services to build off of, so it was really just the wild west. Also, it seems everybody trusted one another and nobody expected spam to even exist, so it was never conditioned for, so now we have all of these bolt-on things you have to do to make sure your mail isn't sent straight to the spam bin... SPF records, DKIM signing, etc... It's a miracle email actually still works the way it does.
  • Anybody using ES6 yet?

    13
    1 Votes
    13 Posts
    6k Views
    SuperMikeS
    Just using function syntactic sugar var hello = (name) => {....} And this makes code clear in async flow async.waterfall([ (next) => { next(err, 'name') }, (name, next) => { next(err, 'final') } ], callback)