cffileupload not actually uploading anything
I am using a simple example trying to start experimenting with the multiple file upload feature in CF 9. However it acts like it uploads, gives no sort of error I can see, yet it actually uploads nothing to the server. Am i missing something obvious?
Uploading page code.
<cffileupload
align="center"
url="uploadFiles.cfm"
width=600/>
Code for the uploadFiles.cfm page.
<cffile action="upload" destination="c:\temp" nameconflict="makeunique" />
Pretty simple code yet it doesn't seem to work. I know I can use cffile to write to the directory as I have tested that seperately. Any ideas out there?
