Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
etman #1
cffile - wrong file type error message
I'm limiting a file upload to either a .jpg or a .jpeg file. If someone tries
to upload anything other than a file with one of those extensions you get an
ugly CF error window. Is it possible to instead detect that the person is
trying to upload something other than what is allowed, and show my own error
message (or set the value of a variable so that I can reload the page and show
a 'nice' error message. Thanks in advance, Rob
etman Guest
-
#40164 [NEW]: filetype() generates wrong error message type
From: pcdinh at gmail dot com Operating system: Windows PHP version: 5.2.0 PHP Bug Type: Compile Warning Bug description: ... -
Cffile not working, no error message
Hello everyone, I was trying to use CFfile to create a simple txt file on the server. Strange thing is that it won't write txt file and there is... -
CFFile Problem in MX7 - No Error Message, No Upload
We have a CFFile tag writing to a UNC Path. Its been working for years, and suddenly its acting terribly -- it does not return an error message, and... -
wrong operand type - error
I've seen a decent number of people who have said that they have received the same error that I have now received. I received some artwork in Quark... -
Parser Error Message: Could not load type - Please HELP
I have aspx file VS.NET 2002 with c# My application works perfectly on my pc. Please, I need help... THANKS :) ============================= 1) I... -
jorgepino #2
Re: cffile - wrong file type error message
You could use
<cftry>
<cfcatch type="ANY">
</cfcatch>
</cftry>
jorgepino Guest
-
Mike Greider #3
Re: cffile - wrong file type error message
In addition to cftry/cfcatch, write a regular expression to file the extension so you can validate that it's only .jpg or .jpeg. Then you can handle this exception with your custom message.
Mike Greider Guest



Reply With Quote

