php file uploads over 200mb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T19:45:44Z http://stackoverflow.com/feeds/question/643991 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/643991/php-file-uploads-over-200mb 1 php file uploads over 200mb Dacto 2009-03-13T18:24:13Z 2009-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#644078 0 Answer by Peter Bailey for php file uploads over 200mb Peter Bailey 2009-03-13T18:42:11Z 2009-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#644079 3 Answer by stesch for php file uploads over 200mb stesch 2009-03-13T18:42:50Z 2009-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#644200 1 Answer by Alekc for php file uploads over 200mb Alekc 2009-03-13T19:16:36Z 2009-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>