Make WordPress Core

Changes between Version 2 and Version 3 of Ticket #48919, comment 3


Ignore:
Timestamp:
04/23/2020 04:04:56 PM (4 years ago)
Author:
fattony4
Comment:

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!
     1I 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!
    22
    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!
     3I found the problem in the nginx error logs (/var/log/nginx/error.log):
    44
    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{{{
     62020/04/23 17:40:55 [error] 15290#15290: *77 client intended to send too large body: 65686808 bytes, ...
     7}}}
    108
    11 I would be happy to schedule a specific time to meet on Slack and debug/fix the issue together with a dev.
     9The solution was to add this line to my nginx config file:
     10{{{
     11client_max_body_size 20M;
     12}}}