Re: Automate FTP

2010-05-17 Thread Tom Chiverton
On Saturday 15 May 2010 03:20:56 you wrote: > I'm not really getting any errors when using cfexecute, just nothing is > happening or transferring. Assuming it's not a timeout or memory limit (both of which would give errors), have you tried running a packet sniffer like Wireshark to see what is

Re: Automate FTP

2010-05-14 Thread Greg Luce
; > > -Original Message- > From: Greg Luce [mailto:luce...@gmail.com] > Sent: Friday, May 14, 2010 4:58 PM > To: cf-talk > Subject: Automate FTP > > > I have a remote server with some transaction logs I would like to automate > the ftp retrieval of. I have a

RE: Automate FTP

2010-05-14 Thread Paul Alkema
ce [mailto:luce...@gmail.com] Sent: Friday, May 14, 2010 4:58 PM To: cf-talk Subject: Automate FTP I have a remote server with some transaction logs I would like to automate the ftp retrieval of. I have a scheduled task that uses cfftp to do so, but it seems no matter how long I set the timeouts in the C

Automate FTP

2010-05-14 Thread Greg Luce
I have a remote server with some transaction logs I would like to automate the ftp retrieval of. I have a scheduled task that uses cfftp to do so, but it seems no matter how long I set the timeouts in the CF Admin for the task, or in the cfftp tag, it fails for files larger than ~ 30-40M. I can g

Re: OT: Automate FTP

2001-03-29 Thread paul smith
So are you telling me I should enter the following? at 02:00 /every:M,T,W,Th,F,S,Su ftpcmd.bat best, paul At 11:00 AM 3/29/01 +, you wrote: >type >at /? >at the command prompt to find out > >Alternatively, in Windows2000 use the scheduled tasks control panel > > >Mark > > > >At 01:21 AM 3/

RE: OT: Automate FTP

2001-03-29 Thread Thomas Chiverton
You can use the schedule tasks bit in NT to set this up too - buit read the help text on the sytax for the command ! -Original Message- From: Mark Woods [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 29, 2001 12:00 PM To: CF-Talk Subject: Re: OT: Automate FTP type at /? at the

Re: OT: Automate FTP

2001-03-29 Thread Mark Woods
type at /? at the command prompt to find out Alternatively, in Windows2000 use the scheduled tasks control panel Mark At 01:21 AM 3/29/2001, you wrote: >I've created a FTP batch file, ftpcmd.bat: > >%windir%\ftp.exe -s:%f0 >goto done >open financialcontent.com > (user name omitted) >

OT: Automate FTP

2001-03-28 Thread paul smith
I've created a FTP batch file, ftpcmd.bat: %windir%\ftp.exe -s:%f0 goto done open financialcontent.com (user name omitted) (password omitted) lcd d:\website\htdocs\stockgolf\htdocs\data ascii get eod.txt bye :done @echo off cls exit So how do I schedule this with AT? best, pa