This looks it’s kinda old post. Hmmm…. I do have the same version installed on my test website, and there the upload is working correctly. I did try to upload the same image on both website and on the test website was working perfectly.
Also, I notice that some of the images do upload and some don’t
I think I may have find reason why… Max limit on the test site is 8MB on the other is 2MB.
Yes, it’s an old post, but still perfectly relevant.
Max limit on the test site is 8MB on the other is 2MB.
That will cause an error.
In php.ini or .htaccess.
php.ini:
max_execution_time = 120
max_input_time = 120
memory_limit = 64M
post_max_size = 64M
upload_max_filesize = 64M
htaccess:
php_value max_execution_time 120
php_value max_input_time 120
php_value memory_limit 64M
php_value post_max_size 64M
php_value upload_max_filesize 64M
Hmmm still getting HTTP error.