Skip to content

v4.0.0 Upgrade Support

ActivityPub Test Kategorie
  • My forum doesn't show a good performance in pagespeed

    ActivityPub Test Kategorie
    4
    0 Stimmen
    4 Beiträge
    0 Aufrufe
    julian@community.nodebb.orgJ
    @V.-Kushnir Some additional tips here: https://docs.nodebb.org/configuring/scaling/
  • 0 Stimmen
    17 Beiträge
    36 Aufrufe
    julian@community.nodebb.orgJ
    @esoteric_programmer@social.stealthy.club that's likely because GtS handles summary as a content warning for everything. The whole summary and content warning business is in flux right now, so hopefully a standard will be set soon.
  • 0 Stimmen
    8 Beiträge
    1 Aufrufe
    julian@community.nodebb.orgJ
    @lassesuom my guess is they're sess:* keys. They can balloon up if you have lots of guests *cough* AI scrapers. There used to be logic so that guests didn't receive a session key (since they didn't really need one for regular browsing) but it could be that that detection no longer works.
  • Cloudflare Caching

    ActivityPub Test Kategorie
    4
    0 Stimmen
    4 Beiträge
    2 Aufrufe
    C
    @julian No, Cloudflare can use the cache-control response header to determine how long to cache content, but not whether to cache content. Even if it was possible to cache based on response headers, it wouldn't be useful in this case; we want to ensure both that we're not serving user-specific content to guests (or other users) and that we're not serving guest-specific content to users, and the cache-control headers can only help with the former, not the latter.
  • 0 Stimmen
    25 Beiträge
    14 Aufrufe
    julian@community.nodebb.orgJ
    @strypey@mastodon.nzoss.nz fwiw I'm thinking that C2S might be applicable in an S2S-like setting where a user "logs in" to instance B using instance A's credentials, and B can do limited actions as the user on A. Essentially A would act as the server, B is the "client".
  • Need solution that ensures PDFs can be previewed

    ActivityPub Test Kategorie
    3
    0 Stimmen
    3 Beiträge
    1 Aufrufe
    julian@community.nodebb.orgJ
    @eeeee is right, it's pretty much an arms race between those who want to get the file, and those who don't want the file downloaded. Keep in mind that if a browser is viewing the file, then it has de facto already downloaded the file. The "save as" functionality is mostly a convenience feature for you to re-locate the downloaded file elsewhere.
  • Updates to the world page

    ActivityPub Test Kategorie nodebbactivityp nodebb
    21
    2
    1 Stimmen
    21 Beiträge
    161 Aufrufe
    julian@community.nodebb.orgJ
    @projectmoon@forum.agnos.is hmm... could be a bug in the user migration code path. Can you run your forum in dev mode (./nodebb dev) and try to load some of the categories here in your forum, and let me know if you see any errors in the console?
  • Live testing of remote categories

    ActivityPub Test Kategorie activitypub nodebbactivityp
    63
    2
    0 Stimmen
    63 Beiträge
    959 Aufrufe
    julian@community.nodebb.orgJ
    @pfefferle@mastodon.social just wanted to poke you about this issue again. The latest updates to NodeBB now do a webfinger backcheck to ensure that the actor has a valid webfinger entry for their purported handle. If it does not, then the user is not properly created. Mastodon also does this. This check is probably for security as well as for preventing handle collisions. The multilingual plugin in conjunction with the ActivityPub plugin creates users that share the same handle, and that causes issues with federated content. For example, this article by @jonvt@vivaldi.com will load up just fine in Mastodon, but this japanese article by @akira@vivaldi.com will not, because that second article's attributedTo is https://vivaldi.com/ja/?author=176, which fails that check (the author's ID is actually https://vivaldi.com?author=176 as per the handle backcheck) cc @AltCode