Resource interpreted as image but transferred with MIME type text/html - Magento

magento, php

Solution

This might well occur if your image path is set incorrectly. For example relative to current directory "images/myimage.gif" vs relative to web root "/images/myimage.gif".

The reference to "text/html" might suggest you have an error being returned by the server.

Problem

I'm getting below error when uploading a new product image for my Magento shop. ``` Resource interpreted as image but transferred with MIME type text/html ``` Is there a reason why this is happening?

Original source

Related problems