Replies: 1 comment
-
It didn't occur to me to check my proxy settings for this website. Changing the Nginx |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm running into a frustrating issue where if I try to upload large images (seems to be anything > 1MB) that should be allowed, ie. they are less than the max file upload limit, I get an error. The error reported in Wordpress is:
Post-processing of the image failed likely because the server is busy or does not have enough resources. Uploading a smaller image may help. Suggested maximum size is 2500 pixels.
Looking at the network request in dev tools I get:
413 Request Entity Too Large
The image I'm uploading is less than 2500 pixels, it's under the upload file size I've set in my php.ini (the image is 3MB and the limit is 128MB), and the request fails in about 2 seconds which is under the processing limit I've set.
What I've Tried
LimitRequestBody
to 0 and it's maximum value in my.htaccess
filepost_max_size
andupload_max_filesize
memory_limit
I'm at a loss as to why this is happening. To me, it looks like some Apache configuration issue but from my limited knowledge I haven't been able to figure out where the issue is. I've posted my
php.ini
file below and I can post any other configuration files that might help.php.ini
Upload Limit Displaying Correctly
![image](https://user-images.githubusercontent.com/1559993/150828845-80498bdf-ccb3-43a2-9f68-04bb7799c884.png)
Beta Was this translation helpful? Give feedback.
All reactions