Search results

  1. digitalpoint

    Public Page Caching Issue

    Hmmm... interesting. Can't imagine what the reasoning would be that it would be stripping out data from drop-down boxes and removing submit buttons. Also seems strange it would be caching anything in the admin area (normally a bad idea). I can't speak for why it would be doing certain things...
  2. digitalpoint

    Public Page Caching Issue

    It really looks like something is manipulating the page DOM. The drop-down list as well as the button to submit it are missing, and they aren't loaded in via JavaScript (so shouldn't be an issue with AJAX or JavaScript not loading). Are you able to try a different browser/device to see if it's...
  3. digitalpoint

    Warning: Trying to access array offset on null

    Oh ya… if you are filtering API usage by IP address, it tends to cause problems. If you use presigned URLs it causes even more problems because it’s the end user viewing the presigned URL that’s having its IP blocked. The API token is scoped for the absolute minimum it needs, so maybe instead...
  4. digitalpoint

    App incorrectly assumes site running on domain root

    Ya, I’m not absolutely opposed to it, I just don’t love doing one-off exception things that have the potential to cause bigger problems (two different site inadvertently using the same bucket by default in the case of www.example.com and example:com). That has the potential to cause...
  5. digitalpoint

    Incompatibility between using R2 for media and lightbox plugin

    I could probably make an option to disable cache busting, but it does seem like it would make more sense for that plugin to be able to recognize full URLs (including parameters) if they are trying to pick up URLs via regex. Alternately, if it's just a matter of the plugin using a default local...
  6. digitalpoint

    Dev Site License?

    It's not possible to do it for arbitrary domain that isn't related to the license. It does allow you to run on a test site for your site (for example test.example.com), but if the domain itself is completely different, there's not a way for it to pick it up as the license key is hashed against...
  7. digitalpoint

    App incorrectly assumes site running on domain root

    Wouldn't that be the opposite? It knows it's *not* on the domain root, so it doesn't do things as if it was. It doesn't add www to the suggested R2 domain, it takes what the site is already using and prefixes it with media., but it's only that... just a default, you of course can pick anything...
  8. digitalpoint

    Feature Request: File Type Exclusions and WooCommerce Media Support for Cloudflare R2

    For individual files, you can already do that by manually moving a media item from R2 to local. I did add the ability to define extensions to exclude by default when uploading a new file in the next version. If you add this to your wp-config.php file, it will not send files with the extension...
  9. digitalpoint

    Reinstalling the plugin—I'm lost

    It’s a little tricky because people can have different sites using different versions. That’s why there’s not just a universal download link (with it being both site and version specific). Alternately, you can download the right version for your site from the license page here...
  10. 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.
  11. 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']...
  12. 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...
  13. 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).
  14. 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...
  15. 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...
  16. 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...
  17. 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...
  18. 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...
  19. 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?
  20. 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...
Back
Top