Greetings!
I been trying to increase the maximum uploaded filesize from 2Mb to 500Mb, I've manage to check moodle docs https://docs.moodle.org/405/en/File_upload_size, and follow the instructions, but unfortunately it does not manifest on the Site Administrato ->Security -> Site Security Settings, the posted Maximum uploaded file size is still the default value of 2Mb, by the way may moodle version is 4.2, thank for anyone who can help me solve this issue.
here is the instruction
You need to edit the following three settings in your php.ini file located at: /etc/php5/apache2/ Here are a set of instructions to follow line by line.
- Type "sudo nano /etc/php5/apache2/php.ini"
- Press Ctrl and W and type "post_max_size"
- Change the value to the number of Mb you want your site to accept as uploads
- Press Ctrl and W and type "upload_max_filesize"
- Change the value to the number of Mb you want your site to accept as uploads
- Press Ctrl and W and type "max_execution_time"
- Change the value to 600
- Press Ctrl and O
- Press Ctrl and X
- Type sudo apachectl restart