• I need to know if someone has been able to solve the load of videos in WordPress, since I have done everything from reducing the files, placing code in File Manager, in the wordpress editor and I still have the error.

Viewing 1 replies (of 1 total)
  • Thread Starter JUAN FRANCO

    (@jgfranco)

    I used these codes:

    1. File Manager / public_html / .htaccess edit and wrote this: SetEnv MAGICK_THREAD_LIMIT 1

    2. File Manager / public_html / wp-config.php edit and wrote this: define( ‘WP_MEMORY_LIMIT’, ‘512M’ );

    3. In WordPress menu / Appearance / Edit themes / themes function / edit and wrote this: add_filter( ‘wp_image_editors’, ‘change_graphic_lib’ ); function change_graphic_lib($array) { return array( ‘WP_Image_Editor_GD’, ‘WP_Image_Editor_Imagick’ ); }

    function hs_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’, ‘hs_image_editor_default_to_GD’);

    4. In WordPress Menu / Settings / Media / i change de values 1300 X 900, Because my videos are 1240 X 720

    But the error keeps coming.

Viewing 1 replies (of 1 total)
  • The topic ‘HTTP error uploading videos’ is closed to new replies.