Magento – Error filtering template: Notice: getimagesize(): Read error!

magento-2.0magento2

Error filtering template: Notice: getimagesize(): Read error! in /Applications/MAMP/htdocs/local.devsite.com/web/vendor/magento/module-catalog/Model/Product/Image.php on line 949

I get this on my Homepage and any page with Products.

I see that this issue was said to be resolved in 2.0
https://github.com/magento/magento2/issues/2276

How am I still getting this error?

Best Answer

This could happen on the images with 0 size. Run this command on your pub folder to find possible images with 0 size and delete them:

find . -size 0

Related Topic