Question
Not able to upload more then 2 GB file via cfftp
Hi,
I am using cfftp to transfer file to ftp server. I am able to upload file around 2 gb but I am not able to upload more then 2 gb file via cfftp coldfusion. I am using chrome browser.
The code is under as:
<cfftp connection="session.ftpConn"
action="open"
server="testserver"
username="testuser"
password="testpassword"
stoponerror="Yes"
timeout="90000">
<!---Did it open connection? <cfoutput>#cfftp.succeeded#</cfoutput><br />--->
<cfif cfftp.succeeded>
<cfftp connection = "session.ftpConn"
action = "PutFile"
localFile="#form.FileContents#"
remoteFile="#variables.uploadedFileServerName#"
stoponerror="Yes"
passive = "Yes"
timeout="90000">
<cfif CFFTP.Succeeded>
<!---<P>Close the connection:--->
<CFFTP ACTION="close"
CONNECTION="session.ftpConn"
STOPONERROR="Yes">
what needs to be done for this?
