Mitul Dabhi
answered Nov 30 '-1 00:00
you need change setting of php.ini , you can put max upload size , suppose for default
upload_max_filesize = 200000M
here value is 200000M bytes
you can change it to desirable size .
or you can do
ini_set('upload_max_filesize', 30000M);
it will change upload_max_filesize dynamically by script .
you need to change post_max_size also for safe side ,
post_max_size = 30000M
memory_limit setting need to change also