ucfopen / UDOIT

The Universal Design Online content Inspection Tool, or UDOIT (pronounced, “You Do It”) enables faculty to identify accessibility issues in their Learning Management System. It will scan a course, generate a report, and provide resources on how to address common accessibility issues.
GNU General Public License v3.0
108 stars 65 forks source link

Update nginx configurations and php.ini to increase maximum file size. #944

Closed taheralfayad closed 5 months ago

taheralfayad commented 6 months ago

Fixes #942. In this current iteration of UDOIT, the maximum file size that the user is allowed to upload to a course is 1MB, which renders the file replacement modal useless for most PDFs. What currently happens when you try to upload a file that is >1MB is that UDOIT returns an unhandled 413 error, which isn't really that informative to the user. To combat that, I set the acceptable upload file size to 10MB in the nginx configurations for local.conf and deploy.conf. I also set upload_max_filesize and post_max_size to be 10MB in php-custom.ini.

dmols commented 5 months ago

Changes requested were made. Good to push!