Question: Your site must allow uploading of large files. What might you need to do?
- Make sure the user has the proper permissions.
- Keep a count of upload file sizes and log them.
- Change the `upload_max_filesize` configuration parameter.
- Be sure to use chunked transfer encoding.
Answer: The correct answer of the above question is Option C:Change the `upload_max_filesize` configuration parameter.