Questions tagged [cfftp]

Acronym for ColdFusion's built in FTP client

Acronym for ColdFusion's built in FTP client

17 questions
4
votes
2 answers

Why is CF FTP transfer speed multiple times slower than standard FTP?

I have a ColdFusion application that I use to transfer files between our development and production servers. The code that actually sends the files is as follows: ftp = new…
Sean Walsh
  • 8,266
  • 3
  • 30
  • 38
4
votes
0 answers

How to Download file from Active FTP Server using NSURLSession API as CFFTP API are deprecated from iOS 9?

I have a configured active server which is listed in white wash list of firewall.There is a file at some path on FTP server. How can I download them by using NSURLSession API?
mohit_IBS
  • 161
  • 5
4
votes
0 answers

Coldfusion Secure FTP existsFile errors when file doesn't exist?

I am attempting to use the secure FTP ColdFusion functionality. I am running into an error with the fileExists function, only when using a secure connection. Instead of returning "no" when a file passed in doesn't exist it instead errors saying:…
3
votes
1 answer

Coldfusion cfftp putfile rename when file exists

When uploading a file using cfftp, how do you determine if the file already exists and rename it?
Jay
  • 33
  • 3
3
votes
1 answer

ColdFusion cfftp getfile exceeds timeout

I am running CF 11. I have a file on a SFTP server that I want to get. This is a zip file about 60MB in size. I can get the SFTP connection. However, when I use action="getfile" to get the file to my local. The error that I am getting is,…
Monte Chan
  • 1,193
  • 4
  • 20
  • 42
3
votes
1 answer

Coldfusion 10 CFFTP SFTP issue algorithm negotiation fail

This is the error I get when trying to connect to an SFTP server running SSH-2.0-OpenSSH_7.1 using Coldfusion 10: An error occurred while establishing an sFTP connection. Verify your connection attributes: username, password, server, fingerprint,…
Jeff Shain
  • 767
  • 3
  • 9
  • 21
3
votes
1 answer

Attribute validation error for tag CFFTP. It has an invalid attribute combination

I am trying to perform a getFile in cfscript to a SFTP server and after working on it for an entire day I am here, hoping to at least get some tips. So, here is my script : LOCAL.fileName = lsDateFormat(now(), 'yyyymmdd') & '.csv'; LOCAL.filePath =…
Nicolas A
  • 31
  • 2
2
votes
2 answers

get file from ftp with cfftp (coldfusion)

I need to get a file from this ftp server (ftp.cetip.com.br), located in directory /MediaCDI/ with name "20160412.txt". The complete address is ftp://ftp.cetip.com.br/MediaCDI/20160412.txt. This is an open ftp, but cfftp requires a user and…
Deivi
  • 197
  • 2
  • 12
2
votes
2 answers

ColdFusion CFFTP action="listdir" returns nothing

I am trying to use CFFTP to log onto buy.com's marketplace and download an account's orders. Buy.com allows you to FTP into your account folder and download your orders as TXT files for your own reference. I know the credentials I have are working…
1
vote
1 answer

coldfusion cfftp timeout

I need to FTP a file to a server and the file is about 30 MB, in my code, I have defined the timeout: cfsetting requesttimeout="3000" and cfftp action="open" connection="objConnection" timeout="3000" ....... But it still timeout when running. I…
leonjoho
  • 47
  • 2
  • 9
1
vote
1 answer

SFTP Issue on ColdFusion 2016

We recently migrated our applications from ColdFusion 9 to ColdFusion 2016. One of our applications SFTPs files using cfftp tag. We noticed that CFFTP tag with ColdFusion 2016 no longer works. We worked with our internal IT team and the remote SFTP…
1
vote
1 answer

Error 550 when using CFFTP to remove a file

I'm using cfftp to download files which I parse. I then need to delete the file from the server. I can list and download the files fine. However but I am butting my head against a problem that I can't seem to resolve. Using the SAME PATH AND FILE…
j-p
  • 3,698
  • 9
  • 50
  • 93
0
votes
4 answers

"Connection refused" error with CFFTP

I'm trying to setup a connection to FTP to transfer a file. Unfortunately, because of the environment the tools I have available to me are limited. I'm receiving the following error: An error occurred while establishing an FTP connection. Error:…
ale
  • 6,369
  • 7
  • 55
  • 65
0
votes
0 answers

Coldfusion FTP error: Algorithm negotiation fail

I'm trying to open a cfftp connection, but it is returning error 82 (Algorithm negotiation fail) My connection:
user6824563
  • 735
  • 6
  • 25
  • 47
0
votes
1 answer

Issues with CFFTP and recursive directories

I have searched the archives and I cannot find the answer to this question. Basically, what I am doing is FTP'ing several folders and files to a remote server. The code I have now will create the root folder, and transfer the 11 files that are in…
1
2