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.