Opened 15 months ago

Closed 7 months ago

#20136 closed defect (bug) (duplicate)

ms-files.php sets *.webm mimetype incorrectly

Reported by: braydonf Owned by:
Priority: normal Milestone:
Component: Multisite Version:
Severity: normal Keywords:
Cc:

Description

The content-type of *.webm files is incorrectly being set to image/webm by ms-files.php for multisite networks on uploaded *.webm videos in the media library.

Change History (6)

  • Keywords reporter-feedback close added

There is no reference to .webm in core... so you must be filtering the list of allowed file extensions/MIME types in order to be able to upload WebM videos in the first place?

In one of the themes I have done so yes, using this in functions.php

add_filter( 'upload_mimes', 'custom_mimes' );

function custom_mimes( $mimes ){

$mimeswebm? = 'video/webm';

return $mimes;

}

However in the rewrite to wp-includes/ms-files.php, the filter isn't being run since it is "outside" of a site.

Version 0, edited 15 months ago by braydonf (next)

The rewrite is also preventing some aspects of the video to be displayed correctly, since it's not being served directly from Apache. This is part of a larger issue.

  • Keywords reporter-feedback close removed

Ah, I see the problem now.

  • Severity changed from major to normal

Related: #14659

  • Milestone Awaiting Review deleted
  • Resolution set to duplicate
  • Status changed from new to closed

Patch attached to #14659

Note: See TracTickets for help on using tickets.