Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
Ashburton #1
CFFile and multi-file uploading
I'm trying to create a 'better' file upload interface for a site and run into
a snag. Using a File Input tag I'm creating a list then looping through the
list, passing the individual file path/names to the CFFile tag. I keep getting
the error that "The form field XXX did not contain a file." and I'm starting to
think that there is something internal in the File input tag that ties it to
the CFFile FileField attribute. I haven't been able to find any documentation
stating this, but then again I haven't been able to find any examples that do
what I'm doing.
<CFLOOP INDEX="files" LIST="#FORM.FileList#">
<CFFILE ACTION="UPLOAD" FILEFIELD="files" DESTINATION="C:\TEMP\UploadTest"
NAMECONFLICT="MAKEUNIQUE">
</CFLOOP>
Ashburton Guest
-
Uploading with CFFILE
When trying to upload larger files (10 MB+) I get the following error message: "Error writing data from Web Server to the Cold Fusion Application... -
CFFILE Uploading files from network share
Help Please!!! I have a mission critical application which uses CFFILE to upload documents. It works fine on the testing environment but fails on... -
cffile and uploading a jpg on my hosting server?
this code <cffile action="upload" destination="\temp" nameConflict="overwrite" fileField="Form.FiletoUpload"> used for uploading a file (ie.... -
CFFILE - Uploading multiple files
I'm having a problem trying to upload several files. I am using the code below. Any assistnace will be appreciated. Thanks Norm <cfdirectory... -
multi file multi colomn
can you more clearly explain your problem? - do your files contain of many lines and you want this: f1l1;f2l1;f3l1; ... f1l2;f2l2;f3l2; ...... -
Cubensis #2
Re: CFFile and multi-file uploading
Well it is that CFFILE can not do the thing you want. Passing paths does not work. You will need something like CFFTP to do the job.
Cubensis Guest



Reply With Quote

