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...

Quickly Disable All WordPress Plugins via phpMyAdmin

Before beginning, be sure to have a backup of your database. You may backup your database by...

WordPress Security

Even with many layers of server security, if a WordPress install is not constantly updated and...

WordPress Response Body too Large and Too many arguments in Request Errors

If you are receiving a response body too large error with WordPress it is a result of WordPress...

Unable to create directory uploads/ Is its parent directory writable by the server?

Unable to create directory... Is its parent directory writable by the server? This error can be...