php file uploads over 200mb - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T19:45:44Zhttp://stackoverflow.com/feeds/question/643991http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/643991/php-file-uploads-over-200mb1php file uploads over 200mbDacto2009-03-13T18:24:13Z2009-03-13T19:16:36Z
<p>after changing the max file size, session times, and post max size is it wise to use php to upload files larger than 200mb? reliable? (and this is ignoring whether a client connection is maintained)</p>
<p>edit: done through http not ftp</p>
http://stackoverflow.com/questions/643991/php-file-uploads-over-200mb/644078#6440780Answer by Peter Bailey for php file uploads over 200mbPeter Bailey2009-03-13T18:42:11Z2009-03-13T18:42:11Z<p>This isn't really about whether or not PHP will handle it, I think, but rather how reliably you can upload that much data over HTTP and will your webserver handle requests that will take that long.</p>
<p>I can honestly say I've never had to work in a system where that type of upload was needed so I'm not sure I can provide you much in the way of direct help.</p>
http://stackoverflow.com/questions/643991/php-file-uploads-over-200mb/644079#6440793Answer by stesch for php file uploads over 200mbstesch2009-03-13T18:42:50Z2009-03-13T18:42:50Z<p>No problem.</p>
<p>We have an up-/downloads site at work so that customers can send print data. And these files can get pretty big.</p>
http://stackoverflow.com/questions/643991/php-file-uploads-over-200mb/644200#6442001Answer by Alekc for php file uploads over 200mbAlekc2009-03-13T19:16:36Z2009-03-13T19:16:36Z<p>I think that major issue is client's browser stability, and client's connection. It's pretty hard to transmit that much of data without any accident...</p>