Skip to Content
Menú
This question has been flagged
2 Respostes
4206 Vistes

Request Entity Too Large

The data value transmitted exceeds the capacity limit.

Have this problem when restore database

Can anyone help please

Avatar
Descartar
Best Answer

You can set the file limit size in your Nginx configuration inside server block:

server {

    ...

    client_max_body_size 20M; # adjust based on your desire

    ...

}

Avatar
Descartar
Best Answer

EDIT: I've put a fix for this (if you are using Docker) in the issue tracker for odoo/odoo. I can't paste a link (FFS THIS FORUM!) but if you search for issue odoo/odoo/issues/144144

@Nikita are you using the Odoo docker container?

I'm seeing the issue with the docker container, and it seems to be a hard-coded value in the odoo server itself.

For those who want to help:

- It's not Cloudflare
- It's not an intermediary load balancer or proxy
- The 413 Request Entity Too Large error is being generated by Odoo itself.

I'm also trying to restore a database, and can't get past the upload

There is a issue tracking this bug in Github - but because of the insanely stupid rules of this forum, I can not post a link. You can search for it on the odoo/odoo github under issues.

Avatar
Descartar