Has anyone used this plugin? I don't know if my setup is right, but I think so..
$(document).ready(function() {
$("#uploadify").uploadify({
'uploader' : '/extra/flash/uploadify.swf',
'script' : '/admin/uploads/artistsphotos',
'checkScript' : '/admin/uploads/artistsphotos',
'cancelImg' : '/images/cancel.png',
'folder' : '/img/artists',
'queueID' : 'fileQueue',
'auto' : false,
'multi' : true,
'onComplete' : function(a, b, c, d, e){
alert(d);
},
'onAllComplete': function(event,data){
//something here
//alert(data);
}
});
$('.vla').click(function(){
$("#uploadify").uploadifyUpload();
return false;
});
});
If I check with firebug I receive this: http://screencast.com/t/z9PY53bi , but I can't work with the files in php,and I also have enctype="..
on the <form>
, but when I check the $_FILES
array is empty, is my plugin setup wrong?