I am trying to allow file uploads up to 41 Gigabytes. In my php.ini file it says
upload_max_filesize = 41G
post_max_size = 41G
I am currently trying to upload a file that according to ls -l
is 1194328064 bytes which is under 41 Gigabytes. But when I try to upload this file it shows
Warning: POST Content-Length of 1194328312 bytes exceeds the limit of 41943040 bytes in Unknown on line 0
What is the problem here? I have already restarted LAMPP.