Opened 6 weeks ago
Last modified 6 weeks ago
#61809 new defect (bug)
Firefox Does Not Recognize MIME Types
Reported by: | rubickscube | Owned by: | |
---|---|---|---|
Milestone: | Awaiting Review | Priority: | normal |
Severity: | normal | Version: | 6.6 |
Component: | Media | Keywords: | reporter-feedback |
Focuses: | Cc: |
Description
With documents hosted in the media library, Firefox does not automatically recognize when a file should be downloaded and when it should be rendered in the browser and defaults to rendering it in the browser, resulting in gibberish when selecting certain files types, such as doc and docx.
The same issue does not exist in chromium-based browsers, which appear to make this distinction automatically. The bug appears to persist across desktop and mobile in the respective browsers.
I've investigated the potential cause and it appears to be that without the MIME Type included in the header, Firefox automatically renders all documents in the browser and fails to determine the appropriate action for different file types. When going directly to the URL of a file in the media library, the MIME Type is absent from the header.
Change History (3)
#3
@
6 weeks ago
@rubickscube note that if you are requesting the document(s) directly from your web serving (by loading its full URL), the web server delivers the file and headers. WordPress is not involved in serving the file in this case, and its up to the web server to set the correct content-type header. If this is the case and the docx type is missing, you can add it in .htaccess with AddType
I see two links, one labeled View (like
{SITE_URL}/?attachment_id=705
) and one labeled Download (like{SITE_URL}/wp-content/uploads/2024/08/20-verbia.docx
)The view link redirects to the full Download link, and they both contain a
Content-type
header.In Safari and Firefox on macOS both viewed a PDF upload in the browser but downloaded the DOCX. Are you seeing this behavior for all files, or is there a specific file you are having trouble with?
Do you have any extensions installed in Firefox that would attempt to load support for rendering the DOCX type? For example, I think Microsoft Office has a browser plugin for doing just this.