HTTP Error when uploading mp4 video file
-
This is a repeat issue, but none of the other threads have had a solution that helps me.
I am using WordPress 4.7.3 running the Dani theme from Envato. When I try to upload my mp4 video file via the Media tab in the WP admin I get an HTTP error. The file upload worked fine for a smaller image that I tried to upload, it only errors out on the mp4 video upload.
I have tried the following to fix this issue:
1. Deactivating all plugins one by one and my current theme
2. Installing this plugin – https://github.com/getsource/default-to-gd
3. Adding the following line to.htaccess
:SetEnv MAGICK_THREAD_LIMIT 1
4. Adding the following code tofunctions.php
:add_filter( 'wp_image_editors', 'change_graphic_lib' ); function change_graphic_lib($array) { return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' ); }
None of these have solved my issue. Is there something else I can try to fix this? Please let me know! Thanks for the help.
- The topic ‘HTTP Error when uploading mp4 video file’ is closed to new replies.