MIME type ('text/html') is not a supported stylesheet MIME type

Created on 14 September 2024, 7 months ago
Updated 18 September 2024, 7 months ago

Problem/Motivation

There is an error in the Console log of both Edge and Chrome linked with the honeypot.css
"Refused to apply style from "mysite.com/system/files/honeypot/honeypot.css?sjnqlb' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled."

The error is appearing many times in the logs.

Steps to reproduce

1. with honeypot v7.x.1.28 installed and protecting all forms and pages, access any page.

Proposed resolution

I read in one article that the issue could be that the honeypot.css file is not found.
I donwloaded and checked the zip file for the honeypot v7.x.1.28 and couldn't find any honeypot.css

then I checked the honeypot.module to see where the honeypot.css is loaded from and found that the loading occurs here:

function honeypot_get_css_file_path() {
  return honeypot_file_default_scheme() . '://honeypot/honeypot.css';
}

and the definition of the function is here:

function honeypot_file_default_scheme() {
  return variable_get('honeypot_file_default_scheme', file_default_scheme());
}

Then I checked to see if there are any variable defined with this name honeypot_file_default_scheme
and I couldn't find it neither via the interface inspecting here:
/admin/config/system/variable/module

nor via the db with an SQL searcing for a variable like %honeypot_file_default_scheme%

Can you please help and correct the issue.

πŸ› Bug report
Status

Postponed: needs info

Version

1.0

Component

Code

Created by

πŸ‡§πŸ‡ͺBelgium pureh2o

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @pureh2o
  • πŸ‡ΊπŸ‡ΈUnited States tr Cascadia

    Yes this means the CSS could not be found and an error page was returned when you requested that CSS file. Because the error page probably has a Mime type of text/html instead of text/css, your browser displays that error. This is not a Honeypot-specific error, it's related to how your web server is delivering CSS files.

    First step is to check your web site for that CSS file - visit mysite.com/system/files/honeypot/honeypot.css?sjnqlb and see what you get. Notice that ?sjnqlb is a string added by Drupal core for caching purposes - the real file is mysite.com/system/files/honeypot/honeypot.css and if that is found when you visit that web site you may have to clear your cache.

    I found a couple of similar issues in the issue queue - #3010673: CSS in private files no good for anon users β†’ and πŸ’¬ Chrome refuse to load honeypot.css Closed: cannot reproduce . I suggest you read through those and follow any relevant links. It sounds like some of this may come from trying to serve CSS files to anonymous users from the private file system.

  • Status changed to Postponed: needs info 7 months ago
  • πŸ‡ΊπŸ‡ΈUnited States tr Cascadia
  • πŸ‡ΊπŸ‡ΈUnited States tr Cascadia

    No further information provided.

Production build 0.71.5 2024