Changes between Version 2 and Version 3 of Ticket #48919, comment 3
- Timestamp:
- 04/23/2020 04:04:56 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #48919, comment 3
v2 v3 1 I have this problem, too, on my private server (Debian 10, PHP 7.4, newest WordPress 5.4). If you tell me how to collect the relevant logs, I can provide them!1 I have this problem, too, on my private server (Debian 10, nginx, PHP 7.4, newest WordPress 5.4). If you tell me how to collect the relevant logs, I can provide them! 2 2 3 Seems like a core feature of WordPress to me, I'm a bit disappointed that this issue has been open for months already despite having been reported multiple times on the official support forum! 3 I found the problem in the nginx error logs (/var/log/nginx/error.log): 4 4 5 For example: 6 - https://wordpress.org/support/topic/unable-to-upload-images-67/ 7 - https://wordpress.com/forums/topic/image-uploading-13/ 8 - https://wordpress.com/forums/topic/unable-to-load-images-4/ 9 - (I'm sure there are more.) 5 {{{ 6 2020/04/23 17:40:55 [error] 15290#15290: *77 client intended to send too large body: 65686808 bytes, ... 7 }}} 10 8 11 I would be happy to schedule a specific time to meet on Slack and debug/fix the issue together with a dev. 9 The solution was to add this line to my nginx config file: 10 {{{ 11 client_max_body_size 20M; 12 }}}