CodeIgniter-Multi-Upload icon indicating copy to clipboard operation
CodeIgniter-Multi-Upload copied to clipboard

Can't Display get_multi_upload_data

Open DeviJv opened this issue 7 years ago • 2 comments

help me :(

DeviJv avatar Jul 01 '17 04:07 DeviJv

can you see the error log?

samchi7095 avatar Aug 03 '18 08:08 samchi7095

If anyone else if having this issue I was able to resolve it by removing any file inputs that were left blank before submitting the form.

$('form').submit(function() {
    $('input[type="file"]').each(function() {
        if ($(this).val() == '') {
            $(this).remove();
        }
    });
    return true;
});

Cerkal avatar Feb 12 '19 17:02 Cerkal