Recent content by digitalpoint

  1. digitalpoint

    XF 2.2 iOS pwa installation flow

    It’s not possible. The way it’s done is (currently) the only way unfortunately.
  2. digitalpoint

    XF 2.2 iOS pwa installation flow

    I did see somewhere in Apple’s bug reports that iOS’s flow for needing to “share” PWA to Home Screen was flagged as an issue and assigned to devs to change it. It definitely is kludgey, but maybe someday it will change.
  3. digitalpoint

    [DigitalPoint] Better Google Analytics

    Looks like it might be something with PHP 8.3. Should hopefully be sorted in next release.
  4. digitalpoint

    [DigitalPoint] Security & Passkeys

    If you are only interested in Passkeys, ya… I’d probably go with the native version.
  5. digitalpoint

    External storage for host attachment

    Honestly though, I think the bigger issue is reliability. There’s a definite difference between my 1Gbit symmetrical fiber I have at home vs. the connection I have my servers colocated with. One is $75 monthly and one is $800 for theoretically the same speed (1Gbit). One has redundant/multiple...
  6. digitalpoint

    [DigitalPoint] App for Cloudflare®

    It hasn’t used Page Rules in a very long time (since about a week after the replacements like Cache Rules were introduced).
  7. digitalpoint

    [DigitalPoint] Better Google Analytics

    If you replace the DigitalPoint/Analytics/XF/Pub/Controller/Login.php file with this one, does it work?
  8. digitalpoint

    [DigitalPoint] Better Google Analytics

    Not sure what that would look like as a widget, but no… this addon doesn’t come with any XenForo widgets.
  9. digitalpoint

    [DigitalPoint] Better Google Analytics - XenForo 2.3 update

    Update mail class to concurrently work with XenForo 2.2 and 2.3 If site is running XenForo 2.3, the last bit of JavaScript code that needed jQuery has been rewritten (specifically the $.on() usage is rewritten for XF.on()). Change JavaScript to have overlay page tracking work with is unexpected...
  10. digitalpoint

    [DigitalPoint] Better Google Analytics

    digitalpoint updated [DigitalPoint] Better Google Analytics with a new update entry: XenForo 2.3 update Read the rest of this update entry...
  11. digitalpoint

    [DigitalPoint] Security & Passkeys

    Some of the underlying code from this addon made its way into XenForo 2.3, so might want to check that out too.
  12. digitalpoint

    Fixed utf8.php should be updated (php8.2)

    If $someVar is null, this worked before beta 6, but not after: {{ contains($someVar, 'some_string') ? 'something to show' : '' }} Changing it to this makes it work before and after beta 6: {{ $someVar && contains($someVar, 'some_string') ? 'something to show' : '' }}
  13. digitalpoint

    Fixed utf8.php should be updated (php8.2)

    FWIW, ran into an issue where using {{ contains() }} in a template was broken by this change. Specifically contains() calls substring method which even though PHP docs says needs to be a string, apparently it wasn't actually the case. In my case, there was a situation where contains() was...
  14. digitalpoint

    [DigitalPoint] App for Cloudflare® - Mostly more 2.3 compatibility changes

    Prevent autocompletion of authentication token (saw a situation where it could be overwritten with an admin's saved password for the site) XenForo 2.3 compatibility: Fix for template issue when managing country blocking due to XF core change in 2.3 beta 6 Fix various icons that didn't work in...
  15. digitalpoint

    [DigitalPoint] App for Cloudflare®

    digitalpoint updated [DigitalPoint] App for Cloudflare® with a new update entry: Mostly more 2.3 compatibility changes Read the rest of this update entry...
Back
Top Bottom