Home
/
WordPress
/
How To Questions
/
How to fix "Sorry, you are not allowed to upload this file type." error in WordPress

How to fix "Sorry, you are not allowed to upload this file type." error in WordPress

When uploading a file to your WordPress Media Library, you might encounter the “Sorry, you are not allowed to upload this file type.” error. The message appears when you try to upload a file with an extension different than what WordPress allows by default. The default file types allowed are:

  • Images: .jpeg, .jpg, .png, .gif, .ico
  • Documents: .pdf, .doc, .docx, .ppt, .pptx, .pps, .ppsx, .odt, .xls, .xlsx, .psd
  • Audio: .mp3, .m4a, .ogg, .wav
  • Video: .mp4, .m4v, .mov, .wmv, .avi, .mpg, .ogv, .3gp, .3g2

Trying to upload files with extensions outside of the above will result in the “Sorry, you are not allowed to upload this file type.” error.

To allow the upload, go to Site Tools > Site > File Manager and edit the wp-config.php file for your WordPress, which is usually found in the public_html folder. Above the line ‘That’s all, stop editing! Happy publishing.‘ insert the following:

define('ALLOW_UNFILTERED_UPLOADS', true);

Save the changes to the file and you should be able to upload the desired file from your WordPress wp-admin -> Media -> Add New.

For security reasons it is recommended to remove that new line you added in the wp-config.php after you upload the desired files. If you later want to upload more, you can add the line again.

Share This Article