I want to upload files through a web application and it works as long as the files are under 8 mb. But anything greater gives the following error in the Apache error log:
POST Content-Length of 8593520 bytes exceeds the limit of 8388608 bytes
In php.ini I have:
file_uploads = On
upload_max_size = 20M
memory_limit = 128M
post_max_size = 25M
And in httpd.conf:
LimitRequestBody 20971520
Where and what do I have to change to get this working?