Skip to content

General Discussion

A place to talk about whatever you want

3.9k Topics 23.9k Posts
  • Is it possible to post a topic on all categories?

    12
    0 Votes
    12 Posts
    2k Views
    kfirbaK
    @jtsimoes For sure! Actually, we are using a custom composer based on CKEditor which I've developed
  • Terms of Service

    2
    0 Votes
    2 Posts
    456 Views
    PitaJP
    There's a pre-registration one you can configure in the ACP.
  • Nodebb 1.11.2 with Nodejs 8.12.0

    3
    0 Votes
    3 Posts
    865 Views
    Mikael JenklerJ
    Yeah I know, will update later.
  • Deassosiate all facebook, Google And Twitter accounts

    2
    0 Votes
    2 Posts
    627 Views
    Mikael JenklerJ
    Fixed it, Warning (Take backup before trying this). db.objects.update( { username:{$exists:true}}, { $unset:{twid: "", fbaccesstoken: "", fbrefreshtoken: "", fbid: "", gplusid: ""}}, {multi:true}) db.objects.update( { "social:facebook:app_id":{$exists:true}}, { $unset:{"social:facebook:app_id": "", "social:facebook:secret": "", "social:twitter:key": "", "social:twitter:secret": ""}}, {multi:true}) db.objects.remove( { _key: "fbid:uid"} ) db.objects.remove( { _key: "twid:uid"} ) db.objects.remove( { _key: "gplusid:uid"} ) db.objects.remove( { _key: "settings:sso-google"} ) db.objects.remove( { _key: "settings:sso-facebook"} ) db.objects.remove( { _key: "settings:sso-twitter"} ) Seams to work fine
  • Is there an info-alert box?

    Solved
    3
    0 Votes
    3 Posts
    463 Views
    M
    @PitaJ Yes, thank you it works I found out that it is used for when you entering a topic where you enter it before if it ask if you want to continue reading where you was last time.
  • Getting a notification of new topics in the categories I moderate

    4
    0 Votes
    4 Posts
    778 Views
    kfirbaK
    @jtsimoes tons of plugin ideas . Unfortonately I don't have the time to create them at the moment.
  • Hide the "Moved" arrow

    6
    1 Votes
    6 Posts
    782 Views
    M
    thank you @baris @PitaJ . I think the best is this. .category .fa.fa-arrow-circle-right, .topic .fa.fa-arrow-circle-right { display:none; }
  • This topic is deleted!

    3
    0 Votes
    3 Posts
    2 Views
  • Extensive User Stats

    1
    0 Votes
    1 Posts
    463 Views
    S
    Has anyone done this type of stuff, either as a plugin or even as a stand alone app that simply hits the NodeBB data store (we use MongoDB, not Redis, so that matters if going that route)... We'd like a way to get detailed user stats on a per user basis. Like how often, and it what categories, an individual is posting. We want to be able to research individual user patterns over time. Of course we can just query the DB, but this is something we'd like to see regularly both in ad hoc queries and in reports. Would be awesome to not reinvent the wheel if someone else is doing this, but I suspect no one else is. But wanted to ask before we look at making something ourselves.
  • mailgun email stops after few hours

    3
    0 Votes
    3 Posts
    463 Views
    S
    If you go to MailGun's site, there might be information there.
  • Is it possible to not "watch" all categories by default?

    6
    0 Votes
    6 Posts
    1k Views
    S
    @coderafei said in Is it possible to not "watch" all categories by default?: looks like 1.11.2 has enabled it Nice
  • Searching for a user by the "location" field

    2
    0 Votes
    2 Posts
    459 Views
    J
    I don't have an answer for you... However, I did note that you are using PG. To that end, make sure to update the driver: https://community.nodebb.org/topic/13480/redactor-error-handler-postgresql-error-on-8000-characters-message
  • Pop-Up message by entering a category

    Solved
    17
    0 Votes
    17 Posts
    5k Views
    jtsimoesJ
    @baris It worked! Thank you
  • Default text in text panel..

    6
    0 Votes
    6 Posts
    834 Views
    PitaJP
    https://stackoverflow.com/a/26106287/847382
  • Changing the names of elements/content adjust.

    1
    0 Votes
    1 Posts
    325 Views
    MarcinM
    Hi guys, I need some help, I was wondering how could I change the "icon element" into a name, e.g. „Main Site” (screen number 1 - red square), and secondly, there's also in issue with content adjusting (screen number 2). [image: mpCBEgm.png] [image: NyzOtGl.png] Any advice?
  • Deploy NodeBB in a subfolder of a site

    7
    0 Votes
    7 Posts
    3k Views
    teotikalkiT
    @ A Former User I just wanted to note that the regex isn't necessary. I just installed and my working config is as follows: location /forum/ { proxy_pass http://172.17.2.3:4567; proxy_redirect off; proxy_set_header Host $http_host; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Server $host; 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 X-NginX-Proxy true; # Socket.IO Support proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; }
  • Is it possible to zoom in the emojis?

    3
    0 Votes
    3 Posts
    660 Views
    S
    @PitaJ said in Is it possible to zoom in the emojis?: emoji Thanks. .emoji { height:60px; } does the trick.
  • How to disable VOTES after I upgrade to 1.7.4 ??

    10
    0 Votes
    10 Posts
    2k Views
    Yannick DeslandesY
    Ok now that is hidden, can we use the extra space for last reply please ? [image: JFwPCBD.png]
  • Allowing users to creat a group

    11
    0 Votes
    11 Posts
    4k Views
    <baris>B
    Not possible right now without a plugin, you can wait for https://github.com/NodeBB/NodeBB/issues/7217 to be implemented
  • Adding an offset option for lazy loading images

    5
    0 Votes
    5 Posts
    2k Views
    julianJ
    The lazy loading never really worked all that well, and was originally added because we wanted to stop issues with the browser viewport shuffling back and forth if images were being loaded. Browsers are taking steps to address that now, and so that's why we're stepping out of their way