Skip to content

General Discussion

A place to talk about whatever you want

3.8k Topics 23.2k Posts
  • error in admin

    18
    0 Votes
    18 Posts
    256 Views
    G

    @baris ok, I will try. Thanks a lot

  • Disable html entities in api

    8
    0 Votes
    8 Posts
    199 Views
    H

    @oplik0 I'll try this, thanks a lot.

  • 0 Votes
    3 Posts
    94 Views
    G

    #memo
    solved) cache, webpack maxEntrypointSize, maxAssetSize

  • plugin development, modify service-worker.js

    5
    1 Votes
    5 Posts
    247 Views
    K

    The plugin is now being tested in production.

    Chrome works as expected (push notifications should behave as forum notifications):

    Forum Icon is displayed in the notification Text containing the event that triggered the notification is displayed Clicking in the notification opens the browser at the specific path

    Firefox notifications only work on nightly versions.

  • 2 Votes
    3 Posts
    928 Views
    B-738B

    @omega said in NodeBB made it on to AdminZone "Best Forum Software" poll:

    Back in 2014... but I'm sure it can do better in 2024! 😉

    IPB Votes: 63 22.9%
    vBulletin Votes: 12 4.4%
    MyBB Votes: 17 6.2%
    phpBB Votes: 10 3.6%
    NodeBB Votes: 5 1.8%
    SMF Votes: 15 5.5%
    Others Votes: 15 5.5%
    XenForo Votes: 115 41.8%
    BuddyBoss Votes: 2 0.7%

    https://www.theadminzone.com/threads/best-forum-software-in-your-opinion.116636/

    Stupid ! Scam ....ALL PHP STUPID AND LAST century

    Forgot about PHP ....

  • Show us your rig!

    136
    0 Votes
    136 Posts
    82k Views
    gotwfG

    Updated my keyboard:

    Link Preview Image XKeyboarCD

    favicon

    xkcd (xkcd.com)

    Rock On & Happy New Year! \o/ o/

  • client.css is returning a 404

    Solved
    5
    0 Votes
    5 Posts
    193 Views
    o              oO

    Thanks @baris. It was an obscure permission issue between Docker and DigitalOcean. Does nodebb not error out when it can't write files as expected?

  • Example nodebb sites?

    9
    0 Votes
    9 Posts
    417 Views
    N

    @crazycells From what I can tell, there aren't any videos on the board itself but links to youtube.

    I wondered if nodebb could handle video uploads itself.
    I would need to allow users to upload images and videos on their profiles, like a personal feed on social media.

    After doing more research, I see that images can be uploaded but videos have to be a link to the video. I see there are several embed plugins too.

    With that in mind, and since nodebb has an API, I can think of a few things that might work so need to look into those.

  • 1 Votes
    9 Posts
    305 Views
    B-738B

    Use FreeBSD 14 all stable and last and easy to use

  • Install on FreeBSD

    5
    1 Votes
    5 Posts
    2k Views
    B-738B

    I use FreeBSD 14 with nodebb , no problem and all perfect

  • About seo

    21
    0 Votes
    21 Posts
    9k Views
    B-738B

    @julian said in About seo:

    @vitasllc will be fixed in v3.6.0

    Some not critical issue with "COMMENTS" stay continued...

  • Add user via API

    4
    0 Votes
    4 Posts
    168 Views
    julianJ

    @chipvn thank you for the kind words 😊 happy holidays

  • 0 Votes
    2 Posts
    126 Views
    barisB

    Yes if you have your own expressjs app then you should be able to use the templating engine we use. It is a separate project here https://github.com/benchpressjs/benchpressjs.

  • SOLVED: Canonical tags hurting SEO?

    68
    2 Votes
    68 Posts
    7k Views
    N

    So I close this yesterday and today I get this from Google;

    image.png

    It's kind of odd really because other than posts on the forums, no changes really get made in the settings. Somehow Google just keeps everyone jumping and jumping.

  • Can admin send a pm to a user?

    6
    0 Votes
    6 Posts
    225 Views
    N

    Yes, enable, of course :).

  • Request an audio file at registration

    4
    0 Votes
    4 Posts
    240 Views
    julianJ

    Your best bet is to create a registration interstitial

    Link Preview Image How do I create a registration interstitial?

    I have added custom fields to the registration form using filter:register.build. But I would like to move those fields to the GDPR page where the email field...

    favicon

    NodeBB Community (community.nodebb.org)

  • How do I change my banner?

    2
    0 Votes
    2 Posts
    94 Views
    julianJ

    Banner? Please provide more info, thanks.

  • 1 Votes
    5 Posts
    378 Views
    LEVI HAVIVL

    Could it be that you have it installed?
    If it is not installed, then you will need to install it via npm.

    Connect to your server via ssh Go to your nodebb folder. Run the following command there: npm install nodebb-plugin-beep Go to your site, plugins, and activate the plugin. Reboot
  • Tags Title Case

    3
    0 Votes
    3 Posts
    160 Views
    barisB

    Tags are lowercased so we don't have to deal with different versions, NodeBB and nOdEbB would be different tags if we allowed uppercase letters.

    If you want them to have the first letter capitalized you can add the text-capitalize class to the tags.

    image.png

  • User privileges

    8
    0 Votes
    8 Posts
    238 Views
    barisB

    If it is not showing in the UI you will have to look at the records in the database. Look at the key followers:<target_uid> if the uid of the other user is in there you can remove it.

    mongodb

    db.objects.deleteOne({_key: "followers:<target_uid>", value: "<uid_of_other_user>" });

    redis

    zrem followers:<target_uid> <uid_of_other_user>