Welcome Guest, Not a member yet? Register   Sign In
output cache and webp
#1

Hi,

I have a question around the caching version of a page, and the webp support.

I put the caching support on my website ( $this->output->cache(300) )  but i encounter some problems with the webp support.

If the first cache was from a browser who accept the webp, of course all my images will be on this format, and the people who use for exemple an iphone 6 wish safari will not see any picture during this cache time.

My question is :  is it possible to manage a double cache version of each page, and give to the visitor the good page, or any other solution for manage this kind of thing with the cache page ?

Thanks a lot by advance
Reply
#2

(This post was last modified: 05-02-2020, 02:49 AM by jreklund.)

Personally I would look into the <picture> html tag and include both webp and jpeg.
https://www.w3schools.com/tags/tag_picture.asp

Right know you are getting the device browser tag and serv images based on that?

Code:
<picture>
    <source srcset="/photo/image.webp" type="image/webp">
    <img src="/photo/image.jpg" alt="">
</picture>
Reply




Theme © iAndrew 2016 - Forum software by © MyBB