Skip to main content
This topic has been closed for replies.

1 reply

Participating Frequently
January 17, 2013

It would be helpful to see a list of attributes for the tag at the least.

Here is an example posted on Hostek.com of how to use the ColdFusion CFFTP tag to put a file from your local site, to an FTP site:

<cfftp action = "putFile"

    server = "ftp.some_location.com"

    username="UserName"

    password="Password"

    connection = "MyConn"

    passive = "Yes"

    localFile="D:\home\your_domain.com\wwwroot\localfile.txt"

    remoteFile="remotefile.txt"

    failifexists="no">

Did it succeed? <cfoutput>#cfftp.succeeded#</cfoutput>

<cfftp action="close" connection="MyConn">

Inspiring
January 17, 2013

There's a section of the page missing. See the equiv docs for CF10: http://help.adobe.com/en_US/ColdFusion/10.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7c7d.html, or CF8: http://livedocs.adobe.com/coldfusion/8/htmldocs/Tags_f_16.html#1800554

Still: this page should be fixed.

--

Adam