admin管理员组

文章数量:1130349

I tried to upload a .mp3 file and wordpress rejected and display message:

Sorry, this file type is not permitted for security reasons.

This happened with some .mp3 file only. I'm using wordpress 4.9.6

I tried to upload a .mp3 file and wordpress rejected and display message:

Sorry, this file type is not permitted for security reasons.

This happened with some .mp3 file only. I'm using wordpress 4.9.6

Share Improve this question asked Oct 24, 2018 at 9:59 minhbhminhbh 213 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 2

you need to allow them to be uploaded in your media files.

you can add following code to your themes functions.php

function my_mime_types($mime_types){
    $mime_types['mp3'] = 'audio/mpeg';
    return $mime_types;
}
add_filter('upload_mimes', 'my_mime_types', 1, 1);

there is more information about adding new mime types in WP here: https://wpsmackdown/add-remove-filetypes-wordpress-media-library/#add-filetypes

And here a list of the mime_types: https://feedforall/mime-types.htm

I tried to upload a .mp3 file and wordpress rejected and display message:

Sorry, this file type is not permitted for security reasons.

This happened with some .mp3 file only. I'm using wordpress 4.9.6

I tried to upload a .mp3 file and wordpress rejected and display message:

Sorry, this file type is not permitted for security reasons.

This happened with some .mp3 file only. I'm using wordpress 4.9.6

Share Improve this question asked Oct 24, 2018 at 9:59 minhbhminhbh 213 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 2

you need to allow them to be uploaded in your media files.

you can add following code to your themes functions.php

function my_mime_types($mime_types){
    $mime_types['mp3'] = 'audio/mpeg';
    return $mime_types;
}
add_filter('upload_mimes', 'my_mime_types', 1, 1);

there is more information about adding new mime types in WP here: https://wpsmackdown/add-remove-filetypes-wordpress-media-library/#add-filetypes

And here a list of the mime_types: https://feedforall/mime-types.htm

本文标签: Cannot upload mp3 file to wordpress media