Skip to content

Instantly share code, notes, and snippets.

@solid-pixel
Created July 14, 2016 10:29
Show Gist options
  • Save solid-pixel/4f6637b80dec8616e2022e95269f67f4 to your computer and use it in GitHub Desktop.
Save solid-pixel/4f6637b80dec8616e2022e95269f67f4 to your computer and use it in GitHub Desktop.
Fix HTTP Error on file upload
// Fix HTTP Error on img upload
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