Skip to content

General Discussion

A place to talk about whatever you want

3.8k Topics 23.3k Posts
  • Example nodebb sites?

    9
    0 Votes
    9 Posts
    462 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
    367 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
    189 Views
    julianJ

    @chipvn thank you for the kind words 😊 happy holidays

  • 0 Votes
    2 Posts
    155 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
    238 Views
    N

    Yes, enable, of course :).

  • Request an audio file at registration

    4
    0 Votes
    4 Posts
    259 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
    102 Views
    julianJ

    Banner? Please provide more info, thanks.

  • 1 Votes
    5 Posts
    402 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
    183 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
    254 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>
  • Trust levels as Discourse?

    7
    0 Votes
    7 Posts
    311 Views
    julianJ

    @darkpollo Thanks for the feedback. Yes, some sort of user/admin manual would be a good idea. Unfortunately we do not have the technical writers available to do this sort of work 😄

    Getting technical documentation is already a feat 😆

    In the meantime, we did have @jay-moonah put together the "Answers" category, which contains quite a bit of admin-related materials.

  • Category Follow/Unfollow

    24
    0 Votes
    24 Posts
    1k Views
    Mikkel LindhardM

    It was indeed not necessary to have the _uid.

  • Domain name change

    6
    0 Votes
    6 Posts
    204 Views
    N

    Wonderful then. This is usually a job that ends up being a rabbit hole with a lot of other software.

    Thanks. I'll give it a try.

  • How to change forum language?

    4
    0 Votes
    4 Posts
    874 Views
    phenomlabP

    @xianqu Admin->Settings->General->Default Language

  • Pushing forums in the AI SEO domination era

    4
    4 Votes
    4 Posts
    669 Views
    julianJ

    Hah, already possible to lock your forum down using privileges, and let paying members in 💰

  • default searching settings

    2
    0 Votes
    2 Posts
    84 Views
    barisB

    You can control this in the ACP at /admin/settings/general#search-settings

    image.png

  • Add filter to individual topic

    3
    0 Votes
    3 Posts
    118 Views
    barisB

    There is no filtering do you mean sorting the replies? It is already available in the sort by dropdown.