Skip to content

General Discussion

A place to talk about whatever you want

3.9k Topics 23.8k Posts
  • Can we add Terms and Condition /Agreement form when user sign up

    8
    1 Votes
    8 Posts
    4k Views
    A
    Key to the cupboard I keep her locked in... ... tumbleweed
  • version support policy

    7
    0 Votes
    7 Posts
    2k Views
    B
    thanks!
  • Installing NodeBB on the server with MongoDB database

    1
    0 Votes
    1 Posts
    952 Views
    G
    Hi I m currently following these two links Configuring Database Setting Up NodeBB on Digital Ocean Is there anything else that I need to follow to host NodeBB on digital ocean with mongodb as database? I m reading through the NodeBB docs and following the links by order but was wondering is there anything else that I need to know about? And the digital ocean guide is 2 years old and wondering if there's changes in things that I m not aware of. Thank you
  • get v0.7.X dockerfile

    4
    0 Votes
    4 Posts
    3k Views
    leemyL
    Thanks a lot! It works
  • Problem with websocket connection

    5
    0 Votes
    5 Posts
    2k Views
    limkerL
    I switched over to grey clouds in my subdomain, same problem. @julian EDIT: correction. It's working. I'll make some test before close this topic. Thanks!
  • Admin access

    11
    1 Votes
    11 Posts
    5k Views
    A
    I set them up as the same credentials for both for testing and ease of use. In production you'd use different logins for putty and your forum. Your forum user will have admin credentials applied. Sorry for the confusion. If you're still having issues. Send me a chat message and I'll look when I get in.
  • Is it necessary to use Database as a service to host NodeBB forum

    4
    0 Votes
    4 Posts
    2k Views
    barisB
    I am not sure if bluehost gives you ssh access to install the required software to run NodeBB, if it does then yes you can install NodeBB on it.
  • Schedule Post?

    3
    0 Votes
    3 Posts
    2k Views
    Moritz FriedrichM
    Did you manage to build a plugin? I'd be interested in this. Thanks!
  • Login - Using a MySQL existing database?

    5
    0 Votes
    5 Posts
    2k Views
    M
    Yeah I could copy my user inside Redis but what is hard is when new user sign up in MySQL, to replicate this inside Redis Thanks for your help, Max
  • Permissions?

    8
    0 Votes
    8 Posts
    4k Views
    julianJ
    @Neor At the moment, only Administrators have banning privileges, and there is no facility to hand out timed bans, though that would be a neat plugin
  • This topic is deleted!

    Locked
    2
    0 Votes
    2 Posts
    24 Views
  • This topic is deleted!

    Locked
    2
    0 Votes
    2 Posts
    41 Views
  • Google Summer of Code Ideas List

    6
    2 Votes
    6 Posts
    3k Views
    PitaJP
    @julian that's too bad. Will you pay me then
  • Is this supposed to be a bug on quoting?

    2
    0 Votes
    2 Posts
    1k Views
    A
    Looks like a bug / UX enhancement.
  • Topic title displays oddly when opened through notification

    3
    0 Votes
    3 Posts
    1k Views
    remcokatzR
    Ah yes, that is correct! I've not selected an icon since i wanted to do custom images with icons not present in the font awesome collection. The icons in the font awesome collection are not an option so how can i have this fixed?
  • Shared Authentication between two node apps when using mongodb

    11
    0 Votes
    11 Posts
    6k Views
    julianJ
    @José-Ángel-Rey-Liñares I don't believe Kano uses NodeBB anymore, though I could be mistaken. We still recommend https://github.com/julianlam/nodebb-plugin-sso-oauth, though if you have a login API that takes username/password, you could also consider writing a plugin that listens on the action:auth.overrideLogin hook...
  • NodeBB in Production: Linux Files Permissions, the right way

    7
    0 Votes
    7 Posts
    3k Views
    julianJ
    @v4 This is a risk with any application, and NodeBB is no exception. Think "zero-day exploits" and applications which accidentally let someone "break out" of the environment. It's obviously something we patch and code against, but finding them is often another matter We maintain an email specifically for handling these issues: [email protected]. If you've located an exploit vector, email use privately there, and we'll get it fixed up!
  • Upgrading from 0.6 to 0.7

    4
    0 Votes
    4 Posts
    2k Views
    A
    You would have to shut from stable to master. Master isn't advised to be used in production, but for testing is fine. To change branches you would type git checkout master git pull ./NodeBB upgrade npm up You may need to disable incompatible plugins if their are any.
  • To have recent post widget showing posts from subcategories

    1
    0 Votes
    1 Posts
    1k Views
    S
    Is there any way to make this widget show recent posts not only from the current category but from all subcategories within it as well?
  • Importing very custom IPB

    4
    1 Votes
    4 Posts
    5k Views
    N
    @bentael After some pause, I think I'm ready to work on custom importer. After some investigation I have found, that Importer works with classic/basic entities. Even If I will create custom importer, for example nodebb-plugin-import-ipboard-very-custom, import plugin will use only designed methods (I will be able to import additional fields) like: setup, getPaginatedUsers, getPaginatedCategories, getPaginatedTopics, getPaginatedPosts, and several utility methods like logging, testRun, etc. My question: as author of importer, what do you recommend to do if I want to import additional entities? (Example: awards) What I want to accomplish after import: Import of standard data: topics, categories, posts, users - It's simple and clear Import custom user fields without altering User document for future plugin use Import additional entity - Awards for future plugin use Import additional entity - Points(like reputation, but isn't part of user table) for future plugin use