Error while transferring to server 413

Hi!
When uploading large files, I have attached a photo, an error appears (I posted the photo)

Error while transferring to server
Error message: 413

Program in Russian language.
I am not Russian.
please help me
php.ini

max_execution_time = 36000
max_input_time = 36000
memory_limit = 5120M
post_max_size = 100G
file_uploads = On
upload_max_filesize = 100G
max_file_uploads = 20
default_socket_timeout = 36000

nginx.conf

client_max_body_size 100G;
fastcgi_read_timeout 36000;
fastcgi_send_timeout 36000;


Your language is set in your profile (upper right).

As for the 413, it means your front-end isn’t configured to accept files larger than whatever size is being sent. If you’re uploading via the Web UI, however, chunking is being used. So there is zero need to bump the body/etc sizes to 100G. The largest chunk for the Web UI will be either 10 or 100 by default (though the Desktop client will use chunk sizes up to 5000 by default). Larger files will be broken up into these chunks and take place over multiple HTTP transactions. So each upload transaction will never be larger than the chunk size.

What installation method?

Have you modified any of the chunking settings from the default?

Do you have Cloudflare in front of your deployment? If so, their free level has a 100MB limit.

1 Like

Thank you
client_max_body_size = 0;

This topic was automatically closed 8 days after the last reply. New replies are no longer allowed.