What error do you get? Are you using the Media Library?
My client was getting this error…. it was because the image dimensions were HUGE (something like 3,000px by 4,000 px). Smaller sized images didn’t show the error. Maybe this is your problem?
Hi thanks for the responses! It wasnt the image size as i tried multiple images all sizes and yes it was through the Media Library. It is sorted now though. I contacted my ISP and they had a look. I think the issue was in a .htacess file.
Cheers
Great to know it’s working for you.
same problem. @kennyirv can you please share your .htaccess files code ?
this is my code for htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress