• Resolved druid75

    (@druid75)


    I have been using WPSmush successfully for a while, but suddenly whenever I upload an image I get an HTTP error and the image fails to upload.

    If I disable WP Smush the image uploads fine.

    Currently I am keeping it disabled, which is a shame as it is great.

    https://wordpress.org/plugins/wp-smushit/

Viewing 1 replies (of 1 total)
  • Hi @druid75,

    Are you familiar with debug log?

    You can skip adding SCRIPT_DEBUG in the config file.

    Just add these:

    // Enable WP_DEBUG mode
    define( 'WP_DEBUG', true );
    
    // Enable Debug logging to the /wp-content/debug.log file
    define( 'WP_DEBUG_LOG', true );
    
    // Disable display of errors and warnings
    define( 'WP_DEBUG_DISPLAY', false );
    @ini_set( 'display_errors', 0 );

    Can you possibly check for any error in the same and post it here.

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Http Error on Image Upload’ is closed to new replies.