Re: Loading Large Files through a Browser

2002-06-13 Thread nick
AFAIK it's the virtual memory overload error. Nick - Original Message - From: "Jason Larson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, June 13, 2002 11:37 AM Subject: RE: Loading Large Files through a Browser > He

RE: Loading Large Files through a Browser

2002-06-13 Thread Jason Larson
EMAIL PROTECTED]] Sent: Thursday, June 13, 2002 10:24 AM To: CF-Talk Subject: Re: Loading Large Files through a Browser CFFILE puts the whole file into memory before saving to disk. But what happens after the file is written to disk? Is the memory cleared? My cfm page, consisting of just and

Re: Loading Large Files through a Browser

2002-06-13 Thread Won Lee
CFFILE puts the whole file into memory before saving to disk. But what happens after the file is written to disk? Is the memory cleared? My cfm page, consisting of just and some comments hangs after the third upload. I upload small jpegs about 67KBs. I upload one, hit back, and upload ano

Re: Loading Large Files through a Browser

2002-06-13 Thread nick
looking at solutions like PHP's FTP functions. Good luck. Nick Call - Original Message - From: "Chris Norloff" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, June 13, 2002 10:46 AM Subject: Re: Loading Large Files through a Bro

RE: Loading Large Files through a Browser

2002-06-13 Thread Shawn Grover
Be patient. Depending on your connection, and the server load, this can take a while. (I know, that's kinda obvious). When I was testing the limits of our upload application, I had to do a number of progressivly larger files. When I hit 67 Meg, it would take near 45 minutes for the file to uploa

RE: Loading Large Files through a Browser

2002-06-13 Thread Jason Larson
Is there any way to adjust IE's timeout, maybe a registry hack? Thanks, larzz -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 13, 2002 9:50 AM To: CF-Talk Subject: RE: Loading Large Files through a Browser > I was wondering if any

RE: Loading Large Files through a Browser

2002-06-13 Thread Philip Arnold - ASP
> I was wondering if anybody out there has had any timeout issues when > loading large files through the web browser with cffile. I have been > trying to upload a 6 to 15 meg file through a file input field and the > browser seems to time out, I don't get a cold fusion error just the > browser see

RE: Loading Large Files through a Browser

2002-06-13 Thread Lon Lentz
How are you sure the upload has stalled/failed? Are you using a requesttimeout=? > -Original Message- > From: Jason Larson [mailto:[EMAIL PROTECTED]] > Sent: Thursday, June 13, 2002 12:34 PM > To: CF-Talk > Subject: Loading Large Files through a Browser > > > I was wondering if an

Re: Loading Large Files through a Browser

2002-06-13 Thread Chris Norloff
We've used CFFILE for saving files and for appending information to files on disk. Our big problem was that CFFILE loads the entire file into memory before saving it to disk. So it's possible your problem is in CFFILE trying to put it all in memory before saving to disk. Chris Norloff -