badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Media upload error

#22266

Hi mbrija,

We are not facing this problem. If we found any problem relating to this issue then we will let you know. Could you once send your temporary username and passoword at our Email, we will try to help you. Don’t forget to send this forum link too. First of all deactivate all the plugins that you have installed in your dashboard. Some times some plugins may also restict to upload the images. If still the same problem then,

Just add this code inside wp-config.php file
define('ALLOW_UNFILTERED_UPLOADS', true);

This code inside functions.php file

add_filter('upload_mimes', 'pixert_upload_types');
function pixert_upload_types($existing_mimes=array()){
$existing_mimes['jpg'] = 'images';
return $existing_mimes;
}

Thank you!