I have no declared file size limit on validation, but I get "File exceeds maximum file upload size" error. Why is that? I would like to be able to upload files up to 500 MB. Is that possible?
This question has an accepted answers - jump to answer
Oops! I have found this is due to some php.ini settings. On querying my server settings I get the default value:
"upload_max_filesize=50M;"
The insertion of:
php_value upload_max_filesize 500M
on the top of the .htaccess file - located in the public_html directory - has fixed this.
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
Oops! I have found this is due to some php.ini settings.
On querying my server settings I get the default value:
"upload_max_filesize=50M;"
The insertion of:
on the top of the .htaccess file - located in the public_html directory - has fixed this.