3
I’m working in PHP and doing upload files, when trying to make a upload of 60M 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
thus configured:
...
FcgidMaxRequestLen 1073741824
MaxRequestLen 1073741824
...
And I have the php.ini
with
upload_max_filesize = 2048M
post_max_size = 2048M
I’ve searched everywhere and I can’t find any resolution for that mistake.
That’s right @Bruno Augusto, resulted in the change in vhost.conf. Thanks
– Jorge B.
Glad I could help :)
– Bruno Augusto