I’m trying to use CF9’s new cffileupload tag and allow multiple file uploading. However, it is not working as planned due to what seems to be a permissions error. We have created a generic user for the coldfusion service and applied this to the CF temp directory as well as the final destination directory. This setup seems to work 80% of the time in IE (I found one scenario to make it fail) and not at all in Chrome (gives the 401 error).
For simplistic reasons, the main page has:
<cffileupload url="http://<mydomain>/fileupload.cfm" name="attachments" align="center" maxuploadsize="30" title="Attachments" height="200" width="600" bgcolor="DCDCDC" />
The fileupload page has:
<cffile action="upload" destination="\\\\<server>\\<folder>\\" nameconflict="makeunique" />
Obviously, <mydomain> and \\<server>\<folder> are filled in with the necessary information for my setup
Any ideas that I may be missing on getting this to work properly?