up vote 1 down vote favorite
share [g+] share [fb]

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)

edit: done through http not ftp

link|improve this question

78% accept rate
feedback

3 Answers

up vote 3 down vote accepted

No problem.

We have an up-/downloads site at work so that customers can send print data. And these files can get pretty big.

link|improve this answer
does your site transfer data over http? – Dacto Mar 13 '09 at 18:59
@Dacto: I've never seen an ftp server written in PHP. Would be fun, though. Of course it's http. It's a PHP question. – stesch Mar 13 '09 at 19:08
well idk, someone could possibly send data through ftp protocol via php...hehe idk, Thank you. – Dacto Mar 13 '09 at 19:14
feedback

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...

link|improve this answer
feedback

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.

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.