• Hello,

    I’m getting HTTP errors on media uploads after 4.5 update.

    Please fix that!!!!1

    Thank you

Viewing 15 replies - 31 through 45 (of 66 total)
  • Thank you artedesigner.
    Your code works for me.

    This is ridiculous.

    I’ve tried about everything in the book, everything listed within this discussion, and yet, nothing. Since this new 4.5 update, I’ve had 6 websites all go blank. I’ve even connected directly with Coda and nothing, still.

    Super frustrating. Super annoying. Super time consuming, which no one has enough of.

    Any other solutions?

    When adding the “SetEnv MAGICK_THREAD_LIMIT 1” into the htaccess file, does it need to be placed in a specific location?

    Who has time for this?

    This is such a pain in the ass error. I have 8 wordpress sites under development. I cannot spend the time toggling back and forth uploading simple images 5-6 times to get them to upload. I am uploading srgb jpeg’s and png’s exported from photoshop. This is incredibly frustrating to get the HTTP Error on each upload.

    Try this! It worked for me. It just sets your wordpress to use the GD editor. https://www.dropbox.com/s/ckzvzgu4hh1ais9/default-to-gd-master.zip?dl=0

    My hosting company suggested this fix and it seems to have worked

    Yes – a pain in the ass for sure.

    @raymandingo – you place the one line of code at the top of the htaccess file above “# BEGIN….”

    Hope that helps.

    I have tried editing the .htaccess, have tried the dropbox plugin, and have tried @artedesigner’s functions.php fix. Still not working. Some photos upload, other do not, and i cannot find a pattern as to why.

    Very frustrating, hope there is relief soon.

    Hi folks. There is a patch to be tested over in the bug tracker for WordPress here: https://core.trac.www.ads-software.com/ticket/36534#comment:10

    If you want to test and report findings back, that would be good. It would be a whole lot better than blind conjecture, here, to have the core fixed properly.

    Thank you so much artdesigner!
    Your code worked for me as well. Kudos mate!

    artdesigner’s code is the simplest solution:

    add_filter( 'wp_image_editors', 'change_graphic_lib' );
    
    function change_graphic_lib($array) {
    return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' );
    }
    
    Add the above mentioned code in the functions.php of your currently active theme. I did place the code right after the "<?php ".

    Thanks artdesigner!

    SetEnv MAGICK_THREAD_LIMIT 1
    This code code work partially work for me, still some files got problems.

    Everytime when it fails, actually some image files (different sizes) has been created, they won’t go away until you FTP and delete it manually.

    art designer’s code did the trick for me as well. Thanks.

    Activated the child theme and installed the code, in case the theme is updated.

    Thank you artedesigner.
    Your code works for me too ??

    Thanks to everyone that figured out how to solve this issue! I’ve been in a really bad mood all day, until now ??

    Thank you DrMicro for putting it into terms I can understand…

    Hello,
    I added the code to one of my themes and it worked great! Thank you
    @artdesigner and @donneljo !

    Thank you artdesigner. This code snippet worked for me!

    For those still having problems, add the functions.php code right at the bottom of your functions.php.

    add_filter( 'wp_image_editors', 'change_graphic_lib' );
    
    function change_graphic_lib($array) {
    return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' );
    }
Viewing 15 replies - 31 through 45 (of 66 total)
  • The topic ‘HTTP errors on media uploads after 4.5 update’ is closed to new replies.