File UploadΒΆ
These are all available error checks dealing with file uploads. You can restrict allowed file types, set min and max uploadable files for one upload field and more.
- FileCountMax
Checks if the files uploaded from a field are less than or equal the configured value.
- FileCountMin
Checks if the files uploaded from a field are more than or equal the configured value.
- FileRequired
Checks if a file has been uploaded from this field.
- FileSizeMax
Checks if the size of an uploaded file is less or equal than the configured value.
- FileSizeMin
Checks if the size of an uploaded file is at least the configured value.
- FileTypes
Checks if the file type of an uploaded file is allowed.