Skip to content

Instantly share code, notes, and snippets.

@MAXHEADR0OM
Last active July 25, 2018 14:45
Show Gist options
  • Save MAXHEADR0OM/528970eacf727ab59be6922444baa3fb to your computer and use it in GitHub Desktop.
Save MAXHEADR0OM/528970eacf727ab59be6922444baa3fb to your computer and use it in GitHub Desktop.
Wordpress Image Upload HTTP Error.
/* Paste in functions.php file in your active theme */
add_filter( 'wp_image_editors', 'change_graphic_lib' );
function change_graphic_lib($array) {
return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment