cffile - wrong file type error message

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. #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: ...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default Re: cffile - wrong file type error message

    You could use
    <cftry>
    <cfcatch type="ANY">
    </cfcatch>
    </cftry>
    jorgepino Guest

  4. #3

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139