Recent content by digitalpoint

  1. digitalpoint

    [DigitalPoint] App for Cloudflare®

    Correct... if you were on R2, any additions (or deletions) during that time wouldn't be reflected in the local filesystem.
  2. digitalpoint

    [DigitalPoint] App for Cloudflare®

    A change to the latest version of PHP causes that. Update to the latest version of the addon?
  3. digitalpoint

    [DigitalPoint] App for Cloudflare®

    Only necessary if he wants to make uploads to R2 more efficient (the source “file” would need to be able to be a seekable stream).
  4. digitalpoint

    [DigitalPoint] App for Cloudflare®

    If you edit the src\addons\DigitalPoint\Cloudflare\Api\Advanced.php file, and change this: if (!empty($params['body']) && is_resource($params['body'])) ...to this: if (!empty($params['body']) && is_resource($params['body']) && empty(stream_get_meta_data($params['body'])['seekable']))...
  5. digitalpoint

    [DigitalPoint] App for Cloudflare®

    Don't know anything about that addon, but if it's trying to save something to an R2 bucket (within data or internal_data, the source "file" stream would need to be seekable. My guess is it's trying to save a "file" with a URL as a source possibly? If I knew what the source file type is, I could...
  6. digitalpoint

    [DigitalPoint] App for Cloudflare®

    digitalpoint updated [DigitalPoint] App for Cloudflare® with a new update entry: PHP compatibility update Read the rest of this update entry...
  7. digitalpoint

    [DigitalPoint] App for Cloudflare®

    In the src\addons\DigitalPoint\Cloudflare\XF\Template.php file, if you change this: $binaryValue = @inet_pton($value); if ($binaryValue === false) { $binaryValue = $value; } if (strpos($value, "\0") !== false) { $binaryValue = $value; } else { $binaryValue = @inet_pton($value)...
  8. digitalpoint

    [DigitalPoint] App for Cloudflare®

    What version of PHP are you using? No matter how I try, I've not been able to even get that error at the most basic level with inet_pton. Tried with PHP 7, PHP 8, tried forcing null characters into the function, etc. Side note, it's also the exact same way XenForo core is using inet_pton in 2.3...
  9. digitalpoint

    XF 2.3 A corrupted plugin disabled my site. What is the solution?

    You can't just delete the PHP files, it needs to be uninstalled before deleting files (otherwise you end up with errors like you see where the "system" thinks there should be files there for things like class extending). A couple options: Put the addon files back, then uninstall the addon, then...
  10. digitalpoint

    [DigitalPoint] Better Google Analytics

    digitalpoint updated [DigitalPoint] Better Google Analytics with a new update entry: Compatibility / misc things Read the rest of this update entry...
  11. digitalpoint

    XF 2.3 HAVING supported in finder?

    XenForo 2.4 is getting some improvements to the query builder/finder system, so might not need to drop down to raw queries at that point (of course, doesn't help now though). https://xenforo.com/community/threads/xenforo-2-4-status-and-whats-new-under-the-hood.231562/post-1749367
  12. digitalpoint

    XF 2.3 Ohhh The Master Style Got me good!!

    Only you can really answer that. If you think it needs more work/features/polish/stability, then keep working on it. If not, release it. 🤷🏻‍♂️
  13. digitalpoint

    [DigitalPoint] App for Cloudflare®

    digitalpoint updated [DigitalPoint] App for Cloudflare® with a new update entry: Copy settings between zones Read the rest of this update entry...
  14. digitalpoint

    [DigitalPoint] App for Cloudflare®

    I’d check your web server logs so you can understand what the underlying traffic is/is not. Once you have a handle on that, you can decide how you want to mitigate it.
  15. digitalpoint

    Wordpress Drama

    Yep… I’ve been saying for years that XenForo should be a framework and things like Forum and CMS is just a fist-party addon you can optionally install.
Back
Top Bottom