cffileupload not actually uploading
OK, I've scoured the web looking for someone who has seen this problem and no luck.
I am trying to do a cffileupload to give users the ability to easily upload multiple files. The flash interface comes up... I browse to 1 file, click the upload button and the progress bar moves until it shows it uploaded 1 file. The problem is I can't find the file anywhere especially in the directory I specifed. I've searched the entire server, I've looked for temp files that need to be renamed and moved, I've looked in the log files... nothing.
<cffileupload
url="process.cfm?pro_num=#pro_num#"
progressbar= "true"
title="Upload Closeout Pictures"
wmode="transparent" />
process.cfm
<cfset path = #file_path# & "\" & #url.pro_num# >
<cffile
action="upload"
destination="#path#"
nameconflict="overwrite" /
Any help would save the last of my hair!
Thanks.
Robin
