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…
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?
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:…
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,…
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,…
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 =…
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…
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…
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…
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…
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…
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:…
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…