• Yesterday and today while trying to upload photos for a new post I received this HTTP error. I tried several fixes I found online such as downsizing the photo, making sure everything was in jpeg, deleted some uploaded photos I do not need, and even attempted to change the php. I have uploaded several photos taken with the same camera and the same size and everything in the past, so am not sure what the issue is.

    Any advice would be amazing!
    Liz

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    Did you try below fixes?
    ##################################
    Increase WordPress Memory Limit
    You can do this by adding the following code to your wp-config.php file.
    define( ‘WP_MEMORY_LIMIT’, ‘256M’ );
    ##################################
    simply adding this code to your theme’s functions.php

    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’ );
    ##################################

    Add the following code in your .htaccess file:

    SetEnv MAGICK_THREAD_LIMIT 1

    Let me know if this helps.

    Thanks.

    Thread Starter lizhenkenius

    (@lizhenkenius)

    @kartiks16 thank you for your reply. I tried the second option with not luck. I am unable to figure out how to find the wp-config.php file, can you tell me how?

    Thank you

    Hello,

    You can find the wp-config & .htaccess file at the root, where we have others folders like wp-content, wp-admin etc…

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘HTTP Error’ is closed to new replies.