I'm working on PHP and doing upload of files, trying to make a upload of 60M I get the following error:
mod_fcgid: HTTP request length 16784592 (so far) exceeds MaxRequestLen (16777216)
I have my configuration file /etc/apache2/mods-available/fcgid.conf
as configured:
...
FcgidMaxRequestLen 1073741824
MaxRequestLen 1073741824
...
And I have php.ini
com
upload_max_filesize = 2048M
post_max_size = 2048M
I've searched everywhere and can not find any resolution to this error.