Search results

  1. digitalpoint

    Pre-Signed URLs

    Ya, you’d ideally want to route through something that can’t be cached that in turns generates the pre-signed URLs. In your particular case, is everything within WordPress (for example are the users trying to access the content logged into WordPress user accounts)?
  2. digitalpoint

    Pre-Signed URLs

    Internally it does have the necessary functions to generate the pre-signed URLs so it wouldn’t be terribly hard to implement. Currently it attaches a public domain for WordPress media mainly because then you are able to serve that from Cloudflare’s edge (caching in data centers without needing...
  3. digitalpoint

    Implemented Purge Cache Button

    Ya, I don't see that being too hard. Probably will make it a setting that someone can enable/disable rather than force it there for everyone/always (otherwise people's admin bars just get filled with tons of stuff they don't particularly need/want there).
  4. digitalpoint

    Image Delivery Sizes

    I think that one has the do with it potentially causing more issues with http request timeouts. Say someone had a bunch of 10MB images, selected 30 to process at a time and in the course of doing that, it’s also processing 10 variations per image underneath it all, and now you are making a...
  5. digitalpoint

    Image Delivery Sizes

    I don’t think it would be terribly hard to implement webp and/or avif conversion. Is that all you are doing with that plugin?
  6. digitalpoint

    Migrate existing media R2

    Check your transform rule. It looks like content-type has a typo (should have seen it in your screenshot). It should be image/svg+xml, but it's currently imagen/svg+xml (an extra "n" in there).
  7. digitalpoint

    Image Delivery Sizes

    It wouldn't be as simple as changing the sequence (priority) because that particular plugin is using a different hook. Even if you made changes so they were both using the same hook, it really isn't the "right" solution because that addon simply doesn't know anything about R2. So even in that...
  8. digitalpoint

    Migrate existing media R2

    Do you have an image URL you could share from that page? Like if you right click one of the images to get the image URL?
  9. digitalpoint

    Image Delivery Sizes

    I'm seeing the image look normal there (on both desktop and mobile). Also looking at all the srcset variations via devtools and the 5 variations each look as I would expect. Are you still seeing something funky there, or did you fix whatever it was? Is that all you use the plugin for (webp...
  10. digitalpoint

    Image Delivery Sizes

    How exactly are you wanting to rerun thumbnails and image optimizations? Like is there a specific button or link you are wanting to do it with? If you just mean using srcset as part of an HTML attribute for img tags, ya it should work fine. srcset just needs a valid URL, which the R2 URLs are.
  11. digitalpoint

    Migrate existing media R2

    If it's just SVG/SVGZ images that are causing an issue, check this thread: https://appforcf.com/threads/serving-svg-svgz-images-via-r2.9/ Specifically, SVGs are unique in that they aren't *really* a binary image format, internally they are actually just an XML formatted text file, so by...
  12. digitalpoint

    SVG Header Images Fail

    Coincidentally, after I posted, I had the thought, "I wonder if they maybe did an 'and' instead of 'or'", but figured I'd see that if you posted a screenshot. :)
  13. digitalpoint

    Migrate existing media R2

    Are you looking in the actual filesystem for the file? If those are attachments you moved to R2, they aren't going to be in the local filesystem, which is what I'm guessing WP-Optimize is limited to. I really doubt WP-Optimize is going to know how to to fetch them from R2. I do wish WordPress...
  14. digitalpoint

    Cache and security rules!

    Maybe not completely delete until you know things are working as expected, but ya you could disable them as a test before deleting... I don't see a reason that 1-3 would be necessary if you are using the guest page caching option. As far as the duplicate override for R2 bucket, you might see...
  15. digitalpoint

    Cache and security rules!

    I would, ya... But look through your Cache Rules and Page Rules for something that is doing a "Cache Everything". That override rule is probably being used in conjunction with a Cache Everything rule somewhere (this plugin does not add any sort of Cache Everything rule, so if you have one...
  16. digitalpoint

    Migrate existing media R2

    Honestly, I don't know anything about third-party plugins and what they are/aren't doing. If they work as intended, it should be fine. It should only be an issue if they are deleting WordPress's image variations, but not updating the WordPress database to tell WordPress *about* those changes.
  17. digitalpoint

    Cache and security rules!

    Doing a manage challenge on the admin area certainly is something you can do, but all that's really doing is presenting a captcha (even if it's hidden). Personally, I think actually authenticating users at the network level (before the HTTP request even gets to the server) is going to be *much*...
  18. digitalpoint

    Migrate existing media R2

    If you move one manually does it also not move? Even if the primary image is there, WordPress stores a bunch of size variations and keeps track of those variations internally, so if that list of variations that WordPress internally keeps isn't matching up with the files in the filesystem (like...
  19. digitalpoint

    Cache and security rules!

    Not opposed to adding additional ones. Do you have any specific ideas you are wanting to do?
  20. digitalpoint

    Migrate existing media R2

    The option to manually move to/from R2 is under the Edit more details link. Normally for the moving in bulk, it will only not move something if there's an underlying issue with the media itself (for example the files that are expected to be in the local filesystem for movement can't be found...
Back
Top