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

Create Static Files with your WordPress Install

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

Optimize WordPress Performance

With our service, there are many ways to dramatically speed up the performance of your WordPress...

Install WordPress

Install WordPress with Ultra Web Hosting in Seconds   With Ultra Web Hosting, you can install...

Do you have a WordPress plugin slowing you down?

Some WordPress plugins can really bog down your site's performance. Query Monitor can help in...

Quickly Disable All WordPress Plugins via phpMyAdmin

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