Skip to content

Piero Bosio Social Web Site Personale Logo Fediverso

Social Forum federato con il resto del mondo. Non contano le istanze, contano le persone

welcome page

Feature Requests
3 2 1
Feed RSS

Gli ultimi otto messaggi ricevuti dalla Federazione
  • You can use nodebb-plugin-custom-pages to set up a new page and set it as the custom home page in the ACP.

    To redirect users to a topic you can use the custom JS tab in the acp and check the users joindate and then redirect. For example:

    $(window).on('action:ajaxify.end', () => { if (ajaxify.data.template.topic && ajaxify.data.tid === 123) return; const oneDayMs = 86400000; if (app.user.uid && app.user.joindate > Date.now() - oneDayMs) { ajaxify.go('/topic/123/welcome'); } });

    This will redirect anyone who joined in the past 24 hours to a topic. You have to update the url and topic id so the user isn't stuck in a redirect loop when they land on the welcome topic. Alternatively if you only want to redirect them once, you can set a flag in local storage and check before redirecting.

    read more

  • read more

  • Hi, how can I add a welcome page on our forum, or how can I redirect new users to a topic I want?

    read more

  • As a solution, the link you suggested me kinda helped, but not really... My alternative solution for this was to implement Anubis anti-crawler, since I don't trust Cloudflare that much... My Forum is not on Fediverse yet and I didn't share with anyone and still I was receiving high numbers of clicks and inconsistent unique visitors... I told robots.txt to block every bot since well I'm still building the Forum and still I received one bot in there...

    Hopefully with Anubis the problem can be at least minimized, but for anyone having a Forum... I suggest search for how to implement an anti-bot yourself since otherwise your bandwidth is going to cry for help. I implemented Anubis just today successfully, but I'll be monitoring the traffic of the site either way...

    read more

  • Shaknunic here's the catch-22... If you want to stop AI crawlers, you can stop the good ones using robots.txt

    https://github.com/ai-robots-txt/ai.robots.txt

    If you want to stop the bad ones (which you probably do)... you can't

    They masquerade as legitimate users, and they have more funding behind them than you have time. Every time you try to block them someone on the other end will adapt.

    Unfortunately right now the only reliable solution is a hard challenge from CloudFlare for nearly all requests.

    read more

  • The forum has the robot.txt which is a basic protection against search bots, but AI bots are still a threat, so maybe someone can make a plugin or devs can integrated that into the next versions of the Forum? NodeBB joining Fediverse is excellent and I'm using NodeBB Forums for the exactly reason, I understand that project is like in pre-alpha but suggesting new things to be implemented is also a good thing.

    read more

  • read more
Post suggeriti
  • 0 Votes
    3 Posts
    5 Views
    As a solution, the link you suggested me kinda helped, but not really... My alternative solution for this was to implement Anubis anti-crawler, since I don't trust Cloudflare that much... My Forum is not on Fediverse yet and I didn't share with anyone and still I was receiving high numbers of clicks and inconsistent unique visitors... I told robots.txt to block every bot since well I'm still building the Forum and still I received one bot in there... Hopefully with Anubis the problem can be at least minimized, but for anyone having a Forum... I suggest search for how to implement an anti-bot yourself since otherwise your bandwidth is going to cry for help. I implemented Anubis just today successfully, but I'll be monitoring the traffic of the site either way...
  • Re: Postgresql Integration

    Feature Requests
    1
    0 Votes
    1 Posts
    1 Views
    It's in the works: https://github.com/NodeBB/NodeBB/pull/5861