Increase WordPress Memory Limit 1 define( 'WP_MEMORY_LIMIT' , '256M' ); Change Image Editor Library Used by WordPress 1 2 3 4 5 6 7 function wpb_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' , 'wpb_image_editor_default_to_gd' ); Using The .htaccess Method 1 SetEnv MAGICK_THREAD_LIMIT 1