Uwe
Uwe

Reputation: 515

Drupal 7.52: Text editor not appearing anymore

Adding in new content on Drupal 7.52:

After the latest browser updates of Firefox and Chrome the text editor TiNYMCE does not appear anymore. All I see are the text areas. Switching between 'Full HTML' and 'Filtered HTML' does not make a difference.

Everything was working fine on Firefox 49. Now on version 50 I see this error in the console:

The resource from "[SERVER ADDRESS]/misc/jquery.once.js?v=1.2” 
was blocked due to MIME type mismatch (X-Content-Type-Options: nosniff).

Can anyone help here? I tried to install a different editor, but that did not change anything.

Upvotes: 0

Views: 81

Answers (1)

Steven Jackson
Steven Jackson

Reputation: 156

The browser is expecting the MIME type of the file to be set. I'd check the source to make sure the appropriate MIME type is being set for the file. here's a list of MIME types for you: https://www.sitepoint.com/web-foundations/mime-types-complete-list/ -- head down to the .js section and compare it against your source, first checking jquery.once.js.

Also, check this https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options

Upvotes: 1

Related Questions