The limit actually comes from the database field that stores the blobs. So the editors can't do much in that case. You have two options to workaround this:
- Modify the database field manually
- Store files in the filesystem rather than in the DB. This is explained in the qa-config.php file
Important note: up to v1.8.2, after taking a quick look at the code, I can see that this limit is imposed by the qa_get_max_upload_size() function. This is fine when storing files in the database but the limit makes no sense if storing files in the filesystem. Anyway, you can write a simple plugin to override that behaviour so that approach number 2 actually works