Recent content by Xon

  1. X

    Redis backed view counters

    Make sure you've updated src/config.php to set the Cache provider; $config['cache']['provider'] = 'SV\RedisCache\Redis';
  2. X

    Thread SEO changes [Paid]

    Great to hear! Adding a per node language option would be doable, but I'm unsure how to surface that in html. Sure there is a <p lanq=".." html attribute, but I haven't looked into how JSON-LD does multilingual support. I don't think it would be too much effort, but please open a ticket if you...
  3. X

    Redis backed view counters

    Make sure the Redis Cache add-on is installed and active, it looks like it is missing the + sign to indicate newer versions
  4. X

    XenForo accepts long passwords with extra characters appended

    There is a hard-coded length limit of 4096 bytes for any authentication back-end
  5. X

    Threadmarks Pro [Paid]

    Xon updated Threadmarks Pro with a new update entry: 2.24.11 - Bugfix & maintenance update Read the rest of this update entry...
  6. X

    Thread SEO changes [Paid]

    Hopefully, but it is challenging to remove all the redirects and I have been patching it over time.
  7. X

    Fixed php cmd.php list doesn't work during XF upgrade

    The list CLI command should probably return commands which can work when the site is being upgraded, at at least the upgrade command instead of just outright failing. $ php cmd.php list The site is currently being upgraded. Please check back later
  8. X

    Page could not be loaded

    After switching from the Let's Encrypt SSL cert to Google Trust Services for the SSL cert (as modern let's encrypt can have a compatibility issue with iOS 13 or older), and disabling HTTP/3 (QUIC) the issues appear to be resolved for my client. The ticket from Cloudflare had this as the...
  9. X

    Advanced Bb Codes Pack [Paid]

    The xtable bb-code is basically a legacy one since the stock bb-code is able todo most things without the wonky syntax. It is derived from the table bb-code from this old XF1.x add-on. It basically just swaps HTML's <> for table related html tags for {}. The major thing it supports over the...
  10. X

    Thread SEO changes [Paid]

    Xon updated Thread SEO changes with a new update entry: 1.1.4 - Maintenance update Read the rest of this update entry...
  11. X

    Advanced Bb Codes Pack [Paid]

    Xon updated Advanced Bb Codes Pack with a new update entry: 1.18.5 - Bugfix update Read the rest of this update entry...
  12. X

    Custom Fields Permissions

    What the heck, all this add-on does is add some anonymous functions to a list of anonymous functions to be called.
  13. X

    Page could not be loaded

    This is effecting one of my clients, and disabling "HTTP/3 (with QUIC)" hasn't helped :( I'll try disabling "0-RTT Connection Resumption" and see if that helps
  14. X

    Advanced Bb Codes Pack [Paid]

    If you had an old tabs bb-code installed before installing this add-on, you may need to manually import the XML files for the bb-code as this add-on attempts to avoid overwriting custom bb-codes which have the same name but do not use this add-on's code.
  15. X

    Fixed setupLogEntityActor can throw if moderator actions are triggered from CLI

    protected function setupLogEntityActor(ModeratorLog $log, User $actor) { $log->user_id = $actor->user_id ?? 0; if ($actor->user_id == \XF::visitor()->user_id) { $log->ip_address = Ip::stringToBinary(\XF::app()->request()->getIp()); } } By default stringToBinary will...
Back
Top Bottom