CodeIgniter-Multi-Upload
CodeIgniter-Multi-Upload copied to clipboard
Can't Display get_multi_upload_data
help me :(
can you see the error log?
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;
});