Search results

  1. digitalpoint

    It’s one time and includes a year of support and updates.

    It’s one time and includes a year of support and updates.
  2. digitalpoint

    Cache Everything?

    If you edit the wp-content/plugins/app-for-cf/src/DigitalPoint/Cloudflare/Base/Pub.php file, and change this: $cloudflareAppOptions = $this->cloudflareRepo->option(null); ...to this: if (is_plugin_active('gravityforms/gravityforms.php') && !empty($GLOBALS['post']) && $GLOBALS['post']...
  3. digitalpoint

    Cache Everything?

    Gravity Forms has a support document more or less saying you can never cache it’s pages: https://docs.gravityforms.com/faq-on-cache-and-script-optimizer-issues/ Probably similar with Stripe (and other payment processors). If you are letting guests (people without accounts) make payments...
  4. digitalpoint

    Cache Everything?

    What exactly isn’t working as expected if you enable the Guest page caching within the plugin? I’d rather address whatever isn’t specifically working in your setup rather than reinvent it from scratch (again).
  5. digitalpoint

    Cache Everything?

    Guest pages are are the HTML pages rendered for people not logged into an account on your WordPress setup. They are a little different because logged in users have parts of the page unique to them (for example showing their avatar or username they are logged in as). Guest pages are able to be...
  6. digitalpoint

    Pre-Sale Questions About Caching

    Cloudflare does allow it, but only with their Enterprise plan. There isn't really a way to bypass Cloudflare's own requirement for certain things for certain plans they offer (it would be great if everything was available for no cost, but I suspect it would be hard for them to stay in business...
  7. digitalpoint

    Pre-Sale Questions About Caching

    The caching mechanism is at the network edge (meaning it doesn’t go back to the origin server to serve the cached content, so it can’t check any logic on the origin like something from a plugin). That being said, you can fine-tune the cache key. For example you can choose to ignore query...
  8. digitalpoint

    Zero Trust / Plugin Update Blocked

    It definitely has potential downsides. Like if you are adding different admins on a regular basis you need to regenerate the rules for the new admin email addresses. It’s also not uncommon for certain plugins to be doing things within the wp-admin area that isn’t strictly for admin users...
  9. digitalpoint

    Zero Trust / Plugin Update Blocked

    If something needs inbound access to the WordPress admin area, you would want to whitelist their IPs (if that’s an option) or maybe whitelist the specific URL you need to allow them to access. That being said, the error you posted is a Cloudflare API error. Double check that the API token you...
  10. digitalpoint

    No Turnstile response on add new user when active for WP registration

    I was able to track down a potential issue, but it's limited to multisite setups. Are you by chance using a multisite setup?
  11. digitalpoint

    Plugin support

    I’ve actually reached out to them before, but never heard back. It would be nice if WordPress had an abstracted filesystem where everything just worked with that without custom code needed for every plugin to work with every other plugin. But unfortunately it’s a drawback of WordPress. I did...
  12. 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...
  13. 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...
  14. 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 *...
  15. 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...
  16. 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...
  17. 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...
  18. 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...
  19. 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/
  20. 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).
Back
Top