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

Share button for mastodon

Feature Requests
4 2 0

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • welcome page

    Feature Requests
    3
    0 Votes
    3 Posts
    1 Views
    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.
  • 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
    3 Views
    It's in the works: https://github.com/NodeBB/NodeBB/pull/5861