Reputation: 13
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
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