Recent content by bzcomputers

  1. bzcomputers

    XF 2.3 Running Custom Javascript File

    If it is a small jQuery (.js) file. It should be pretty simple for someone to re-write in pure javascript for you. This would be the simplest way to go to make it compatible with XenForo 2.3+ without adding jQuery support back in (which is not recommended). If its a small file you might even be...
  2. bzcomputers

    XF 2.3 extra.less dark mode rules — how to cover System variation (prefers-color-scheme)?

    I personally use... .m-colorScheme({{ $xf.style.getAlternateStyleType() }}, { *** custom less here *** }); Which I believe is the correct way to do it. This setup works when changing mode settings in both XenForo and your browser.
  3. bzcomputers

    [Liam W] (RIP) Member Self Delete

    Just go to AdminCP -> Appearance -> Template Modifications: (you will see below) ...turn off what you don't want
  4. bzcomputers

    [Liam W] (RIP) Member Self Delete

    Just FYI using the "disable" option in this add-on would not be GDPR compliant, you would need to actually "delete" to be GDPR compliant.
  5. bzcomputers

    Thread View CAPTCHA & AI Scraper & Bot Protection [Paid]

    With the current pricing and no new public releases in 9 months but version goes form 1.1.8 to 1.5.1 - leaves a lot of questions as to why there were no updates released before this when there appears to have been numerous updates occurring. People will be very hesitant to buy.
  6. bzcomputers

    Too many bots from China

    Yes, this is fairly common. If your site doesn't serve a Chinese audience then it would be recommended to just ban the entire country. If you use Cloudflare (even the free version) this can be accomplished in a couple minutes. If you don't use Cloudflare then there will be more work involved...
  7. bzcomputers

    remove the display of ads in certain templates.

    Many advertisers require ads to only be displayed on substantial, and original content pages. Check with your advertiser to know their specific policy for ad placements. Breaking an advertiser's policy, can result in bans, which some are quick to do, if you are lucky it will only be temporary...
  8. bzcomputers

    Search Improvements

    Does the data exist to increase the precision of the reported time averages in the admincp? For example I always see 0 milliseconds... It would be nice to see one or two additional decimal places in these locations if possible. I know sub millisecond times aren't very useful but when I see...
  9. bzcomputers

    Fixed Call to undefined method Symfony\Component\Mime\Message::getTo()

    Getting similar a few times a day on new user registrations... Error: Call to undefined method Symfony\Component\Mime\Message::getTo() src/XF/Mail/Mailer.php:483 Generated by: Unknown account Feb 26, 2026 at 8:23 AM Stack trace #0 src/addons/DigitalPoint/Analytics/XF/Mail/Mailer.php(113)...
  10. bzcomputers

    Redis Cache By Xon

    The next time you update could you add support for identifying Valkey in the admincp. Valkey forks from Redis 7.2.4 and is currently identified as the fork version in the admncp. Here is the available data: Maybe identifying version as: Valkey 9.0.2 (Redis 7.2.4) Thanks.
  11. bzcomputers

    Add-Ons to Track Guests

    Limiting guests typically has the opposite affect. If you limit guests you just get fewer guests and fewer registered users. You also need to be careful to make sure any add-on you use does not also limit search engines from seeing all your content or you are going to be hurting yourself there...
  12. bzcomputers

    XF 2.3 Blocking guests from seeing style-variation?

    Should work just fine. Double check any other template mod on same code block with higher execution order.
  13. bzcomputers

    As part of upgrades, flush redis

    As @Xon said, I'm pretty sure this isn't necessary. I've never flushed Redis after any XenForo upgrades (for years on multiple sites) and never noticed any issues. As it is, there isn't a single XenForo Redis TTL longer than 3600 so within 1 hour all keys will automatically be replaced anyway.
  14. bzcomputers

    Built-in Redis cache does not gracefully degrade on connection failure, leading to fatal errors

    When the built-in Redis cache provider is configured and Redis becomes temporarily unavailable (e.g., during a service restart or brief outage), XenForo throws an uncaught RedisException, resulting in a fatal error that makes the entire site inaccessible. This occurs early in the bootstrap...
Back
Top Bottom