stvnthomas / CodeIgniter-Multi-Upload

Multiple file upload support for CodeIgniter 2.x.
151 stars 158 forks source link

Display files that failed to upload #21

Open ltdev22 opened 9 years ago

ltdev22 commented 9 years ago

How can I also diplay a list of all files that failed to upload with the error occured to each one?

eg Files failed to upload: file1 - invalid file format file2 - filesize too big file3 - invalid file format etc etc

stvnthomas commented 9 years ago

The uploader is set up to be a fail on first error so in your example only the first file's error can be returned.

You could extend the do_multi_upload() method so that the validation happens prior to the upload.