Search results

  1. digitalpoint

    License pricing packages

    It's already on the radar, but it's also not something that's not currently a high priority. It's not quite as simple as just offering different pricing, it would require a lot of backend work as well with rebuilding how the entire licensing system works. Also might need to change in general how...
  2. digitalpoint

    WP CLI R2 Sync getting killed by OOM

    it’s really just fopen itself. If opening the file as a stream (with fopen) fails for whatever reason, it falls back to reading the file into memory. I could put together a custom debugging version that outputs some additional info when using CLI. Might help track down the “why” it may not be...
  3. digitalpoint

    Automatic cache purging

    Actually, I just remembered, if a site specifically disables the WordPress cron system via the DISABLE_WP_CRON constant in their config.php file, it *still* runs, just not as a background task. It might be worth checking WordPress' internal cron "option" which tracks queued cron tasks. SELECT *...
  4. digitalpoint

    Automatic cache purging

    Updated the categories on individual posts/pages, or edit the categories themselves as a whole (like renaming categories)? Hmmm... not able to replicate it (works as expected when I test it). A couple things to check... Does the WordPress site have WordPress' cron system disabled? The purge...
  5. digitalpoint

    WP CLI R2 Sync getting killed by OOM

    With files that size, my gut says it's a situation where the server doesn't support streams, so it falls back to reading the file into memory. A couple things you may be able to check: Make sure your server's PHP supports fopen() Make sure WordPress is using Curl for it's transport (it does by...
  6. digitalpoint

    WP CLI R2 Sync getting killed by OOM

    In theory the memory used should be fairly minimal. By default it uploads data as a stream (effectively a byte by byte data stream that doesn’t need to load the entire file being uploaded into memory). If it’s happening when very large media files are being uploaded, your server may not support...
  7. digitalpoint

    Cloudflare Media (Stream/Images)

    If you are talking about Cloudflare Stream, yes… it would be nice to support it for video, but every time I go to do it, I get so irritated that it supports a max video resolution of 1080p, I end up holding off. It seems crazy to me that a paid service for video can’t even support a resolution...
  8. digitalpoint

    Convert uploaded media to WebP

    The new plugin has gone through the review process and is now available: https://wordpress.org/plugins/image-shift/
  9. digitalpoint

    Image filenames

    This plugin does not alter file names at all (including encoding of them). File names are just whatever WordPress Media system sets them to (part of WordPress core).
  10. digitalpoint

    Security Level options - what do they do?

    It’s a bit of a weirdly labeled setting in Cloudflare. It’s not really about security (your site is secure regardless of the setting). It really should be called, “How aggressive/annoying do you want to be with verifying traffic is human with things like captchas”. I leave my sites at...
  11. digitalpoint

    Convert uploaded media to WebP

    It does not require a paid Cloudflare. Honestly, the feature feels misplaced because it doesn’t even require your site to use Cloudflare at all. It was just kind of a nice thing to do as media was uploaded to R2 (even though it can be used without that). I’ve spun the feature out into its own...
  12. digitalpoint

    Purge cache button

    If you have the ability to call code (sounds like you probably do), you can leverage the same internal mechanism that the plugin uses to purge a list of URLs (for example when a post is edited). wp_schedule_single_event(time(), 'cfPurgeCache', ['https://yourhomepage.com']); The 3rd parameter...
  13. digitalpoint

    Purge cache button

    As long as plugins are using normal WordPress functions/mechanisms to do edits, things should be purged properly. Any of these internal WordPress actions will trigger the purge logic for that post (and all the URLs that go along with it): post_updated (an edit) deleted_post delete_attachment...
  14. digitalpoint

    Purge cache button

    The Purche Cache button in the admin UI is purging the entire cache for the site. Internally it does have the functionality to purge individual pages (that's how it works for automatic purging when things like a post is edited). While I'm not opposed to letting people manually purge individual...
  15. digitalpoint

    css in /uploads/ breaks site because it does not copy to R2

    WordPress does not have an abstracted filesystem, so it's not possible to automatically know if anything is put into the /uploads/ folder simply by it being put there by some process or function. The R2 functionality is based on WordPress Media being uploaded. If the CSS file is uploaded as a...
  16. digitalpoint

    after update to 1.98, the R2 storage is NOT working....

    Still debugging it... Have not been able to replicate the issue in my end (not even with access to someone's servers that it was happening to). Thinking it might be a third-party plugin that is doing something/manipulating the media being uploaded in an unexpected way. That being said, there...
  17. digitalpoint

    after update to 1.98, the R2 storage is NOT working....

    It’s in the “Previous Versions” section here: https://wordpress.org/plugins/app-for-cf/advanced/ But also, you don’t need to go back to previous free version for this, only the Pro.
  18. digitalpoint

    after update to 1.98, the R2 storage is NOT working....

    You can download any specific version from the Updates tab here: https://appforcf.com/items/app-for-cloudflare%C2%AE-pro.1/updates
  19. digitalpoint

    after update to 1.98, the R2 storage is NOT working....

    There were some changes to R2 uploading in 1.9.8 internally to make it more efficient, but still working out what is unique about the servers that it’s not working with. In the meantime, you can safely roll back to 1.9.2.
  20. digitalpoint

    after update to 1.98, the R2 storage is NOT working....

    That part is intentional. At least as far as the file still exists if something goes wrong with the upload to R2. I'm going to send you a file privately to upload to your server to see if that fixes it for you.
Back
Top