CF 3.0.
I'm setting up a form that includes a file upload field, however, with every test I try, it's giving me the "Sorry, your uploaded file size exceeds the allowed limits" even when it doesn't.
My code in the back end is this:
I think I've done this correctly -- this should allow any file from 0k to 2MB, right?
I did add this to form tag attachment:
The upload field looks like this in the Form HTML:
What else could I be missing?
I'm setting up a form that includes a file upload field, however, with every test I try, it's giving me the "Sorry, your uploaded file size exceeds the allowed limits" even when it doesn't.
My code in the back end is this:
file_13:jpg,jpeg,gif,png,bmp,tga,zip,txt,rtf,pdf{2000-0}
I think I've done this correctly -- this should allow any file from 0k to 2MB, right?
I did add this to form tag attachment:
enctype='multipart/form-data'
The upload field looks like this in the Form HTML:
<div class="form_element cf_fileupload">
<label class="cf_label">File Upload</label><input class="cf_inputbox"
size="20" id="file_13" name="file_13" type="file" />
</div>
What else could I be missing?