Skip to content

My forum doesn't show a good performance in pagespeed

ActivityPub Test Kategorie
  • 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
    6 Beiträge
    1 Aufrufe
    L
    On a second note, is it normal behavior that redis has gotten 440k new keys in 4 days ? In last 7 days there has been less than 100 new topics created.. What kind of data is stored there? I guess sessions but what else?
  • 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.
  • 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.
  • 0 Stimmen
    37 Beiträge
    6 Aufrufe
    K
    I am starting think this code is a piece of junk.
  • How to mass edit post content?

    ActivityPub Test Kategorie
    4
    0 Stimmen
    4 Beiträge
    1 Aufrufe
    julian@community.nodebb.orgJ
    @Laz it was a typo, you can run the script with node script_name.js, which invokes the node.js interpreter.
  • Updates to the world page

    ActivityPub Test Kategorie nodebbactivityp nodebb
    21
    2
    1 Stimmen
    21 Beiträge
    153 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
    955 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