CT Data Guy
CT Data Guy

Reputation: 13

Odoo 11 25MB limit exceeded

When uploading a new theme Odoo 11 says the file, which is 30MB, is larger than 25MB. I changed odoo/odoo-server/addons/website_slides/controllers/main.py and restarted Odoo server but still get the error. What do I need to change to increase the 25MB upload limit? Keep in mind this is for admin users, not site users.

Upvotes: 1

Views: 4790

Answers (1)

aekis.dev
aekis.dev

Reputation: 2764

You need to change the file upload limit at this line:

https://github.com/odoo/odoo/blob/11.0/addons/web/static/src/js/fields/basic_fields.js#L1109

change the code:

this.max_upload_size = 25 * 1024 * 1024; // 25Mo

To any value you need.

Upvotes: 2

Related Questions