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;

}
  • 162 Users Found This Useful

Was this answer helpful?

Related Articles

JetPack server was unable to connect with your site

"Error Details: The Jetpack server was unable to communicate with your site...

How to disable WordPress comments, pingbacks, and trackbacks

There are a few ways to disable comments, pingbacks and trackbacks in WordPress:   Go to...

Create Static Files with your WordPress Install

Reduce the processor and memory load of your site but publishing it into html files.Use the...

Blocked by JetPack

If you have access to your site and you’ve not been blocked, you can enter your IP or IPv6...

Plugins on WordPress

There are many great ways to setup and install plugins on WordPress. You may find a library of...