HTTP Error when uploading images to wordpress

Started by digiSal, July 27, 2018, 04:13:12 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

digiSal

I use an NGINX web server on my Ubuntu server and I kept getting HTTP Error when uploading images.

These links helped me fix it:
https://wordimpress.com/wordpress-nginx-http-error-on-image-uploader-fix/#comment-57740
https://wordpress.org/support/topic/http-error-on-image-uploader-1/

I had to edit:
/etc/nginx/nginx.conf

and add
client_max_body_size 100m;

to the http{} section.

I reloaded nginx with
sudo systemctl reload nginx

and the error went away.