CFIMAGE misbehaving when an image file has been incorrectly named.
ok - really need help on this one - I am stumped....
working on an application that does some simple image manipulation, creates thumbs from an uploaded image.... works mostly perfectly BUT if a user uploads an incorrectly named file <cffile action="upload"> fails.....
for example I have an image named 'myimage.png' the file is actually a jpeg. if I upload that this snippet does nothing, not even throw an error.
<cffile
action="upload"
destination="#basepath##path#"
fileField="file"
mode="777"
nameConflict="makeunique"
/>
I have tailed all the logs [exception/server & server] all I get is a file not found error [it never got uploaded!
I have confirmed that the image file types are actually as I expect them to be - no matter how they are named...
I even updated & patched the server with the latest patch and hotfixes.
and it gets weirder....... if I rename a jpeg to a png file, it will upload, but will fail on a cfimage resize command....
Does anyone have a clue as to what is happening here.
-sean
