Recent content by Chris D

  1. Chris D

    Add-on In your experience, which cloud storage service is best for Xenfor?

    Can’t go wrong with the @digitalpoint add-on and the development and support is top notch. But to be clear the first link there isn’t actually an add-on, exactly. It just ships the Amazon AWS SDK and it mostly acts as a tutorial. That tutorial and the SDK download should also work with...
  2. Chris D

    PHP 8.3 compatibility patch

    This will be formally announced at some point but currently the plan is that XF 3.0 will require a minimum of PHP 8.0.
  3. Chris D

    PHP 8.3 compatibility patch

    I don’t think you’ve said exactly what error you received so difficult to say but recently a lot of logs generated by newer PHP versions have been deprecation notices which are only logged in debug mode.
  4. Chris D

    XF 2.2 Imagick still not installable on PHP 8.3, does XenForo recommend a fully compatible alternative(s)?

    We don’t rely on it but arguably it is a better library for manipulating images and I believe with a lower memory footprint. For now simply enable GD which is built in. In real terms the only benefit to Imagick is it can resize a gif and keep its animation.
  5. Chris D

    Browser issue Brave browser (desktop) ... this link doesn't work (works fine in chrome)

    Well, either way, your browser is blocking those requests that are being blocked so providing these examples to their support will hopefully allow them to make improvements in the future.
  6. Chris D

    Browser issue Brave browser (desktop) ... this link doesn't work (works fine in chrome)

    Probably something to do with the browser itself. Note the second point in your screenshot about browser extensions (though applies to additional built-in browser functionality too). I guess it doesn't like the word "cookies" in the URL?
  7. Chris D

    Create an AI sandbox for customers, trained on the XenForo codebase

    Also not available in the UK yet...?
  8. Chris D

    Fixed toggle bb code button eats up line breaks on toggle (XF2.3B4)

    This is fixed now for the next release.
  9. Chris D

    Fixed Mysql error upgrading to 2.3 beta 4

    I feel like we had another report of this but either way it's sorted now.
  10. Chris D

    XF 2.3 Code intelligence vs. entity_structure and resource standards rule #20

    And yeah generally we haven’t been too strict here. I’m not sure if we’ve pointed this out before but the wording used in these rules was very deliberate. Some rules say “must” others say “should”. Must being something we expect you to do every time. Should being something you should aim to...
  11. Chris D

    No ability to ask for shipping address for Stripe

    Now we have Stripe checkout, do we need to do anything more here?
  12. Chris D

    But Guests Can See Customer Forums too!

    Ah no that’s not quite the right way round. Everyone who posts in a customer forum is a customer and therefore providing support and giving code examples is absolutely what they are there for. Yes they are visible to guests but that’s not really an issue, and of course helps people find...
  13. Chris D

    Copying from a code block copies html

    Yeah fun <span>public</span> <span>static</span> <span>function</span> <span>getGoodEditors</span><span>(</span><span>)</span><span>:</span> <span>array</span><br><span>{</span><br> <span>$editors</span> <span>=</span> <span>[</span><span>'literally anything else'</span><span>,</span>...
  14. Chris D

    Copying from a code block copies html

    I bet it gets really ugly with syntax highlighted code: public static function getGoodEditors(): array { $editors = ['literally anything else', 'Froala']; Array::removeValue($editors, 'Froala'); return $editors; }
Top Bottom