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 badges1 Answer
Reset to default 2you 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 badges1 Answer
Reset to default 2you 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
版权声明:本文标题:Cannot upload .mp3 file to wordpress media 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749236122a2337303.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论