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

前端 未结 15 2264
孤城傲影
孤城傲影 2020-12-05 06:48

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
         


        
15条回答
  •  再見小時候
    2020-12-05 07:19

    For magento2 Users

    If you have modified this file app/etc/di.xml with following

    Magento\Framework\App\View\Asset\MaterializationStrategy\Copy
    

    make sure the path string is Case Sensitive (CaseSensitive for non Windows OS)


    If you are facing 404 errors after magento2 Install in Ubuntu.

    Install and Enable rewrite module

    a2enmod rewrite
    

    Then Edit

     /etc/apache2/sites-available/000-default.conf
    

    Add following lines at the End

    
        AllowOverride All 
    
    

提交回复
热议问题