0

I am running magento 2.1.5 and every thing was working fine. Suddenly my CSS and Js files are not loading I am getting error

 http://mymagentourl.com/pub/static/version1491202457/frontend/Magento/luma/en_US/css/styles-m.css” was blocked due to MIME type mismatch (X-Content-Type-Options: nosniff).

what is the meaning of was blocked due to MIME type mismatch (X-Content-Type-Options: nosniff).

I am running magento in nginx Web Server and my mode is production. I tried

  • remove Var/* folder
  • re deploy static content
  • remove cache
  • flush cache

I am not able to understand why my css and js is not loading?

Priyank
  • 7,682
  • 7
  • 37
  • 70

1 Answers1

1

Navigate to your database and perform following steps:-

  • Find core_config_data table and open it.
  • Add a new row and provide "dev/static/sign" under path and "0" under value (without quotes) and leave other fields unchanged and save it.
  • flush cache php bin/magento cache:flush
  • perform static content deploy php bin/magento setup:static-content:deploy
Vivek Kumar
  • 5,115
  • 2
  • 24
  • 50
  • Ya had that solution in mind and done that but this removes the dynamic generation of static file url of version which is removed. So is this ok? – Priyank Apr 03 '17 at 08:34
  • Please let me know about your server environment (linux or windows) and if the problem is browser depended or not. – Vivek Kumar Apr 03 '17 at 09:22
  • Linux with nginx web server no its not browser dependent. – Priyank Apr 04 '17 at 04:52