How do I modify the maximum size of uploaded files in the document tool of a course?
From ClarolineDoc
The default size limit for uploaded files is 2 Mb (default value in php).
- You can change this value in the php configuration file (php.ini) :
upload_max_filesize 10M post_max_size 10M
- Or in the definition of the Apache virtual host (for example : apache.conf) :
php_admin_value upload_max_filesize 10M php_admin_value post_max_size 10M

