RE: [PHP] upload large files troubles

2005-08-19 Thread Jay Blanchard
[snip] I have apache2 + php5. I need to upload large files. I found out, that file is uploaded always. But: - if the file is less than 167 MB all is OK, then I tryed larger files - from 191 MB up, files are uploaded, but php script, which handle the operation is like not executed. I always get

RE: [PHP] upload large files troubles

2005-08-19 Thread Jay Blanchard
[snip] Sure, it looks: form enctype=multipart/form-data action=upload.php method=post input type=hidden name=MAX_FILE_SIZE value=10 / input type=file name=f size=30 /br input type=submit name=Send all works great, to 160 MB, larger files

RE: [PHP] upload large files troubles

2005-08-19 Thread Jay Blanchard
MAKE SURE TO HIT REPLY-ALL SO THAT THE MESSAGE GETS BACK TO THE LIST [snip] The code is pretty simple, i do not think, problem is bad syntax, as I said, everything works fine, when files are smaller then 160 MB. Larger files = blank page. ?php if(isset($_FILES['f'])) { copy

Re: [PHP] upload large files troubles

2005-08-19 Thread Richard Lynch
On Fri, August 19, 2005 5:47 am, curipin wrote: I have apache2 + php5. I need to upload large files. I found out, that file is uploaded always. But: - if the file is less than 167 MB all is OK, then I tryed larger files - from 191 MB up, files are uploaded, but php script, which handle the

Re: [PHP] upload large files troubles

2005-08-19 Thread Jasper Bryant-Greene
Richard Lynch wrote: I have a HUGE distrust of web browsers, so will go out on a limb and say: Web browsers are not reliable transport mechanisms for upload of monster files. Use FTP. That might be wrong, but that's my story, and I'm sticking to it. If somebody else wants to claim that