Hi, How do I increase the max upload size . Right now i changed the value in php.ini from 200 to 250 mb However it is not working is there anyother modification needed. Thanks Rajiv
Just add the following in php files as first line (where it shows error) ini_set('memory_limit', '-1'); //unlimited memory ini_set('memory_limit', '50M'); // 50 MB
Hi, Changed the Max upload size and Post max size variables in php.ini However still no luck , 150mb files are ok as that is max as per upload window. However php.ini showed 200mb which I changed but when I try to upload a file of 226mb it tries for 5-10 minutes then get a connection reset in Firefox. Regards