http error on image upload WP 4.5

Him

I just upgraded 2 sites to WP 4.5. On doing so I am getting an http error on image upload.

Is anyone else getting this? If so is there a fix?

Hey Martin,

Can you try the steps listed on the thread below and see if it helps? If it doesn’t, can you share temp admin access to the site in question so we can check?
http://forum.wpbeaverbuilder.com/support/q/http-error-with-multi-site-and-domain-mapping/

The

Hi,

I found a fix on Wordpress.org the solution is to add the following code to themes functions.php

add_filter( 'wp_image_editors', 'change_graphic_lib' );

function change_graphic_lib($array) {
return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' );
}

Awesome! And thanks for sharing the solution, Martin. We really appreciate it! :slight_smile:

Enjoy!

Ben