Is there a limit to the max uploaded size in php.ini ?
I want to change it Like so:
upload_max_filesize = 4096 M
or 4 G
post_max_size = 4 G
Is there a limit to the max uploaded size in php.ini ?
I want to change it Like so:
upload_max_filesize = 4096 M
or 4 G
post_max_size = 4 G
try this
Maximum allowed size for uploaded files.
upload_max_filesize = 4000M
Must be greater than or equal to upload_max_filesize
post_max_size = 4000M
You'll be needing to set the value of upload_max_filesize and post_max_size variables in your php.ini :
upload_max_filesize = 5000M
post_max_size = 5000M