CFFTP Problem CF 7.02/WIndows Server 2003

2007-08-03 Thread Mark Forsberg
I am using cfftp to upload a file to a client's server. This is not FTPS. When I attempt to load up to an FTP site on Windows 2003 Server and IIS 6.0 I get the following error: ErrorCode: -1 Error Message: Truncated Server Reply I'm able to upload to the site from the command line and 3rd

Re: cfftp problem

2005-05-22 Thread Jochem van Dieten
S.Isaac Dealey wrote: so... in theory, as long as you're connected to an ftp server, an existsDir call should never return cfftp.succeeded=false correct? ... I'm consistently getting these results from existsDir on CF 6.1 arguments.item = /ontap/_components/_cfc/test cfftp

Re: cfftp problem

2005-05-22 Thread S . Isaac Dealey
You are going to need to more tools to find out what is really going on. Either you need to watch the connection realtime on the FTP server (does it have a debugger), or you are going to need a packetsniffer. Thanks Jochem, sigh I was afraid of this... Can you recommend a good packetsniffer

Re: cfftp problem

2005-05-22 Thread Jochem van Dieten
S.Isaac Dealey wrote: You are going to need to more tools to find out what is really going on. Either you need to watch the connection realtime on the FTP server (does it have a debugger), or you are going to need a packetsniffer. Thanks Jochem, sigh I was afraid of this... Can you

cfftp problem

2005-05-21 Thread S . Isaac Dealey
so... in theory, as long as you're connected to an ftp server, an existsDir call should never return cfftp.succeeded=false correct? ... I'm consistently getting these results from existsDir on CF 6.1 arguments.item = /ontap/_components/_cfc/test cfftp directory=#arguments.item#

Now a CFFTP problem...

2004-06-27 Thread Michael Kear
I'm not having a great day today!(sigh)Now I cant see why the following code would work ok on my dev server, but when I upload it to the production server it doesn't work.What happens is it executes the CFFTP Open command ok, but when it executes the next command I get the error message: {quote]

Re: Now a CFFTP problem...

2004-06-27 Thread sicksick monkey
have valid accounts on both the development and production ftp servers. -Dave - Original Message - From: Michael Kear [EMAIL PROTECTED] Date: Sun, 27 Jun 2004 17:06:34 +1000 Subject: Now a CFFTP problem... To: CF-Talk [EMAIL PROTECTED] I'm not having a great day today!(sigh)Now I cant

RE: Now a CFFTP problem...

2004-06-27 Thread Michael Kear
a CFFTP problem... Mike, Not sure if you have tried this or not, but if your code seems to work on your development server and not your production server, I would first check the permission of the username you are trying to connect with on your production ftp server.Make sure the username and password

Re: Now a CFFTP problem...

2004-06-27 Thread sicksick monkey
:52 +1000 Subject: RE: Now a CFFTP problem... To: CF-Talk [EMAIL PROTECTED] Thanks Dave,I thought about that too.Since it's the production server that is trying unsuccessfully to ftp to a third server,its ColdFusion itself that has to have ftp permissions to ftp OUT of the production server

CFFTP - Problem with a Firewall

2004-06-01 Thread Matthew Friedman
I have been FTPing files to this client for over a month and then I have been getting errors lately.The only thing that had changed is that the client updated the firewall I can connect to the FTP server using thepassive=YES But when I try to upload a file I get the following errors On open the

CFFTP problem.. anyone see how to get around this?

2003-12-21 Thread Mike Kear
I'm trying to write a template to retrieve a file from a remote location and process it.The problem is that CFFTP cant find the correct directory on the remote site because the directory name has a space in it.Anyone know how to get around this? I'm wanting it to change to directory /Custom

CFFTP problem.. anyone see how to get around this?

2003-12-21 Thread Mike Kear
I'm trying to write a template to retrieve a file from a remote location and process it.The problem is that CFFTP cant find the correct directory on the remote site because the directory name has a space in it.Anyone know how to get around this? I'm wanting it to change to directory /Custom

CFFTP Problem

2002-04-08 Thread Mark Leder
The following code is able to open and close the connection to my remote server fine (permissions are set properly). However, it skips over (or doesn't find) the file on the remote server in the GETFILE action. What am I doing wrong? Thanks for your help. Mark

Re: CFFTP Problem

2002-04-08 Thread Mario Martinez R.
1_Is that a valid file name??? CFSET remotefile1 = foo.mdb 2_Is that TRANSFERMODE=AUTO or TRANSFERMODE=AUTODETECT ?? I'm posting the completely help from Coldfusion studio down here to see if it can help.See and compare againsts the tested samples. Regards Mario. CFFTP CFFTP allows users to

RE: CFFTP Problem

2002-01-09 Thread Bimal Shah
Hi, We have developed a CFX tag for coldfusion for ftp upload and download. Our main reason for developing it was for speed, the coldfusion cfftp putfile and getfile are too slow. As an example, the cfftp tag taks 7-9 seconds to upload a file while our tag takes 1-2 seconds (ftp to same server,

CFFTP Problem

2002-01-08 Thread Tyler Clendenin
I know you have heard of this problem before, but I am looking for a solution. When using CFFTP to upload a fil it uploads as 0k. I was going to use the Intrafoundation.TCPClient and do it manually, but unfortunatly this is hosted remotely and not on our server. Does anyone have any

Re: CFFTP Problem

2002-01-08 Thread Jim McAtee
When using CFFTP to upload a fil it uploads as 0k. And the problem is? Jim - Original Message - From: Tyler Clendenin [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, January 08, 2002 1:57 PM Subject: CFFTP Problem I know you have heard of this problem before, but I

Re: CFFTP Problem

2002-01-08 Thread Tyler Clendenin
hehehe, sorry, doesn't look right, that is a zero ... as in zero KB. sorry for the confusion - Original Message - From: Jim McAtee [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, January 08, 2002 4:07 PM Subject: Re: CFFTP Problem When using CFFTP to upload a fil

Re: CFFTP Problem

2002-01-08 Thread Maureen
At 04:07 PM 1/8/02, you wrote: When using CFFTP to upload a fil it uploads as 0k. And the problem is? Jim Usually the physical path to the file is wrong, so it doesn't actually find it to upload, it just creates an empty file with the name given.

RE: CFFTP Problem

2002-01-08 Thread Joel Parramore
PROTECTED]] Sent: Tuesday, January 08, 2002 4:16 PM To: CF-Talk Subject: Re: CFFTP Problem hehehe, sorry, doesn't look right, that is a zero ... as in zero KB. sorry for the confusion - Original Message - From: Jim McAtee [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent

RE: CFFTP Problem

2002-01-08 Thread Kym Kovan
Hi all, Funnily enough I am having exactly the same problem. The ftp fails and I get an empty file left at the destination. Without knowing more about your setup, one can't really suggest much. There's a knowledge base article on a similar issue which might help:

CFFTP problem - 0 byte

2001-01-18 Thread Paul Sizemore
I have been using cfFTP to u/l a file to a server (StoreRunner.com), but all of a sudden they say they are getting 0 byte files (after a few months of daily success). When I send the same file with WS FTP, it gets there. Does anyone have any insight? Code follows, and I am relatively new to CF

CFFTP Problem....wont upload .txt files

2000-07-12 Thread Douglas Rehg
--=_791644406==_.ALT Content-Type: text/plain; charset="us-ascii"; format=flowed Hi I am trying to run a script for users to be able to ftp txt files to a FTP server. The script will work fine with .rtf, .log and .doc files, but will not properly upload .txt files. On my