WordPress Error : Sorry, this file type is not permitted for security reasons

.svg and .xap files can result in the error "Sorry, this file type is not permitted for security reasons." when uploading. 

You can work around the error by adding the following to your theme's functions.php file:


add_filter('upload_mimes', 'custom_upload_mimes');

function custom_upload_mimes ( $existing_mimes=array() ) {

	// add the file extension to the array

	$existing_mimes['svg'] = 'mime/type';

        // call the modified list of extensions

	return $existing_mimes;

}


or:


add_filter('upload_mimes', 'custom_upload_mimes');

function custom_upload_mimes ( $existing_mimes=array() ) {

	// add the file extension to the array

	$existing_mimes['xap'] = 'application/x-silverlight-app';

        // call the modified list of extensions

	return $existing_mimes;

}
  • 695 Users Found This Useful

Was this answer helpful?

Related Articles

Do you support Curl?

cURL Support   Yes, cURL is fully supported on all of our hosting servers. The cURL PHP...

Do you support Curl?

cURL Support   Yes, cURL is fully supported on all of our hosting servers. The cURL PHP...

Why do I have references to robots txt in my web stat programs?

What Are the robots.txt References in My Website Statistics?   If you see entries for...

What methods of payment do you accept?

Accepted Payment Methods   We accept the following payment methods for hosting services:...

Do you support MySQL and PHP?

MySQL and PHP Support   Yes! Every hosting plan includes full support for PHP and MariaDB...



Save 30% on web hosting - Use coupon code Hosting30