codeexercise.com
How to Fix “HTTP Error” when Uploading Images in WordPress - Code Exercise
Have you ever received this error message when uploading an image? Follow our instructions, you’ll have to insert some code in your theme’s “function.php” . Go to “Appearance > Editor” Under the right sidebar labeled “Templates”, click on “Theme Functions (functions.php)” Add the following code: add_filter( 'wp_image_editors', 'change_graphic_lib' ); function change_graphic_lib($array) { return array( 'WP_Image_Editor_GD', […]
Md Rashidul Islam