Help: not able to upload infographic to WordPress site

destinywakes

Senior Member
Joined
Sep 12, 2015
Messages
956
Reaction score
205
I just got ready one infographic which I want to update in my blog, when I try upload it to media its showing "html error". The format is Jpg.
Pls help.
 
Rename it into 1 word only e.g info.jpg

Ensure the size is not bigger than the upload limit too
 
Try the solution below.
Code:
https://www.wpbeginner.com/wp-tutorials/how-to-fix-the-http-image-upload-error-in-wordpress/
 
The most common cause of this error is lack of memory available for WordPress to use. To fix this, you need to increase the amount of memory PHP can use on your server.

You can do this by adding the following code to your wp-config.php

1
define( 'WP_MEMORY_LIMIT', '256M' );

This code increases the WordPress memory limit to 256MB, which would be enough to fix any memory limit issues.
 
steveXx is right, try to increase memory limit for WP.

Cheers
 
You need to upload the file (jpg format) and you can use Image Optimizer for WP.
 
Back
Top