Accept="image/pjpeg" is not accepted
After building a file upload function, I realized I had to add image/pjpeg to my list of accepted mime types for the function to work in IE. However in doing so, CF throws the following error:
Complex object types cannot be converted to simple values.
The function works fine in Firefox without the mime type in the "accept" parameter, however IE won't allow progressive image to upload.
Here's my cffile tag:
<cffile action="upload"
destination="#REQUEST.UploadPath#"
filefield="file#qry_getOrder.currentrow#"
nameconflict="makeunique"
accept="image/jpg,image/pjpeg,image/jpeg,image/gif,image/png,image/tif,image/tiff" />
