Skip to content

magento man

Varnish with brotli -> missing ESI handling/filtering

I’ve compiled brotli modules for nginx and added following (from https://www.getpagespeed.com/server-setup/varnish/varnish-brotli-done-right) to varnish default.vcl: sub vcl_recv { if(req.http.Accept-Encoding ~ “br” && req.url !~ “.(jpe?g|png|webp|gif|gz|mp3|mov|avi|mpg|mp4|swf|wmf)$”) { set req.http.X-brotli = “true”; } } # The data on which the hashing will take… Read More »Varnish with brotli -> missing ESI handling/filtering

Composer issue when updating magento version to 2.4.5-p1

When I run composer require magento/product-enterprise-edition=2.4.5-p1 -W I got the following error Problem 1 – magento/product-community-edition 2.4.5-p1 requires magento/module-catalog 104.0.5-p1 -> found magento/module-catalog[104.0.5-p1] but these were not loaded, likely because it conflicts with another require. – magento/product-enterprise-edition 2.4.5-p1 requires magento/product-community-edition… Read More »Composer issue when updating magento version to 2.4.5-p1