Hello,
I recently moved my scripts over to a server running Coldfusion MX instead of 5. Now the scripting I'm using to upload a file doesn't work. I've checked it and it all looks okay - any ideas why it isn't working?
The path quoted by the CF variable is an absolute one:
//marlin/assetinl/scripts/TaskBank/Docstore
Thanks
Neil
I recently moved my scripts over to a server running Coldfusion MX instead of 5. Now the scripting I'm using to upload a file doesn't work. I've checked it and it all looks okay - any ideas why it isn't working?
The path quoted by the CF variable is an absolute one:
//marlin/assetinl/scripts/TaskBank/Docstore
Code:
<cfoutput> <cffile action="upload" fileField="FileToUpload" destination="#getPath.UploadPath#" nameConflict="MakeUnique"> </cfoutput>
Neil
Comment