Skip to content

Instantly share code, notes, and snippets.

@sdhundhalva
Last active January 8, 2019 07:27
Show Gist options
  • Save sdhundhalva/69fd117c2b0ab5a948d5b5ccb2d6558e to your computer and use it in GitHub Desktop.
Save sdhundhalva/69fd117c2b0ab5a948d5b5ccb2d6558e to your computer and use it in GitHub Desktop.
Fixed WordPress WP-Media uploading error. Put this code in functions.php file.
<?php
/*
* Resolve HTTP Error.
*/
function ms_image_editor_default_to_gd($editors){
$gd_editor = 'WP_Image_Editor_GD';
$editors = array_diff( $editors, array( $gd_editor ) );
array_unshift($editors, $gd_editor);
return $editors;
}
add_filter('wp_image_editors', 'ms_image_editor_default_to_gd');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment