CFFTP Issue? Need a second pair of eyes!
Keep in mind that nothing has changed; but today I started getting this.... I've got all the updates and hot fixes installed... so losing hair as it wont cooperate :)
Any ideas?
Here is the error it gives me:
The system has attempted to use an undefined value, which usually indicates a programming error, either in your code or some system code.
Null Pointers are another name for undefined values.
93 : password="#trim(Arguments.ftpPassword)#"
94 : localfile="#trim(Arguments.fileToFTP)#"
95 : remotefile="#trim(Arguments.ftpRemotePath)##trim(Arguments.ftpRemoteFileName)#"
96 : timeout="5000"
97 : transfermode="binary" />
ColdFusion Version 8.01
Enterprise Edition.
























Single request:
<!--- Now FTP the file --->
<cfftp action="putfile"
server="#trim(Arguments.ftpServer)#"
username="#trim(Arguments.ftpUsername)#"
passive="no"
password="#trim(Arguments.ftpPassword)#"
localfile="#trim(Arguments.fileToFTP)#"
remotefile="#trim(Arguments.ftpRemotePath)##trim(Arguments.ftpRemoteFileName)#"
timeout="5000"
transfermode="binary" />
multi-step:
<cfftp action="open"
name="objConnect"
server="#Arguments.ftpServer#"
username="#Arguments.ftpUsername#"
passive="no"
password="#Arguments.ftpPassword#"
timeout="5000"
transfermode="binary" />
<cfif cfftp.Succeeded eq "false">
<cfset fileUploaded = false />
<cfelse>
<cfftp action="putfile"
connection="objConnect"
localfile="#Arguments.fileToFTP#"
remotefile="#Arguments.ftpRemotePath##Arguments.ftpRemoteFileName#"
/>
<cfftp action="close" connection="objConnect" />
</cfif>
same error each time.....
change name="objConnect" to connection="objConnect"
single-step:
add connection="objConnect"
http://healthnova.org
http://accidentattorneyma.com/
http://pcgone.com
http://www.globalcanadameds.com/
<a href="http://wdwwa.org">Sirota</a>
Die schönen Moderationen und Informationen
sind echt super. Über einen Gegenbesuch würde
ich mich freuen.
Viele Grüße von Westerland
I had the CFFTP Issue, but thanks to you I'm out of it now.Thanks for sharing such a useful post.
Please keep do posting new updates.:)
Thanks for giving all these useful replies. Keep posting.:)