Skip to content

Instantly share code, notes, and snippets.

@solid-pixel
Created June 13, 2016 15:17
Show Gist options
  • Save solid-pixel/137dff7970d25ccb93be2896eb2c4357 to your computer and use it in GitHub Desktop.
Save solid-pixel/137dff7970d25ccb93be2896eb2c4357 to your computer and use it in GitHub Desktop.
Fix Wordpress "HTTP Error" on media 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