FTP uploads with curl - monitoring progress - any ideas?

2010-03-04 Thread Ken Ray
I have some large files (100MB +) that I need to FTP to a customer's server. I have tried to use libURL to do the uploading, but I get odd results/random timeouts/errant status messages when the file I'm uploading is over 40MB. I've tried many different workarounds to this, but none have been

Re: FTP uploads with curl - monitoring progress - any ideas?

2010-03-04 Thread Andre Garzia
Ken, can you pipe and forget to a file and keep reading the text file from rev. curl bla bla bla progress.txt right? On Thu, Mar 4, 2010 at 3:28 PM, Ken Ray k...@sonsothunder.com wrote: I have some large files (100MB +) that I need to FTP to a customer's server. I have tried to use libURL

Re: FTP uploads with curl - monitoring progress - any ideas?

2010-03-04 Thread Michael Kann
http://unite.opera.com/ -- just an idea. --- On Thu, 3/4/10, Ken Ray k...@sonsothunder.com wrote: From: Ken Ray k...@sonsothunder.com Subject: FTP uploads with curl - monitoring progress - any ideas? To: Use Revolution List use-revolution@lists.runrev.com Date: Thursday, March 4, 2010, 12

Re: FTP uploads with curl - monitoring progress - any ideas?

2010-03-04 Thread Phil Davis
Hi Ken, If you open curl as a process, you can then read the status info one line at a time. Would that work? Here's one way (courtesy of Josh Mellicker, with some mods): -- a button script -- local vCurlProcess on mouseUp put empty into fld output put formattedForCurl(fld filename)

Re: FTP uploads with curl - monitoring progress - any ideas?

2010-03-04 Thread Ken Ray
Thanks, Phil! Josh sent me his code as well so having both will let me get this done! Thanks again... Ken On 3/4/10 2:16 PM, Phil Davis rev...@pdslabs.net wrote: Hi Ken, If you open curl as a process, you can then read the status info one line at a time. Would that work? Here's one