У меня есть настройка uploadify, которая отлично работает в Firefox с несколькими загрузками изображений.Однако это не относится к IE и Chrome.
Код:
$("#file_upload").uploadify({
'uploader' : '/examples/uploadify/uploadify.swf',
'script' : '/examples/uploadify/uploadify-spotlight.php',
'cancelImg' : '/examples/uploadify/cancel.png',
'method' : 'post',
'debug' : true,
'preventCaching' : true,
'multi' : true,
'fileExt' : '*.jpg;application/jpeg;application/png',
'fileDesc' : 'Image Files (.JPG, .GIF, .PNG)',
'sizeLimit' : 62914560,
'removeCompleted': false,
'onSelectOnce' : function(event,data) {
$('#status-message').text(data.filesSelected + ' files have been added to the queue.');
},
'onAllComplete' : function(event,data) {
//successfull
},
'onError' : function (event, ID, fileObject, errorObj){
//not Successfull
}
});
ОТЛАДКА: В консоли с Chrome ничего не сказано.