Hello,

     Am doing a web application which have multiple file uploads.My problem is,when i click upload..file is uploading successfully but,the progressbar is not moving.Here is my code..



      `     $('#gallery_uploader').uploadify({
        'uploader'    : '<?=base_url()?>uploadify/uploadify.swf',
        'cancelImg'   : '<?=base_url()?>uploadify/cancel.png',
        'folder'      : '<?=base_url()?>uploads',
        'auto'        : false,
        'multi'       : true,
        'buttonText'  : 'Browse Images',
        'fileExt'     : '*.jpg;*.gif;*.png',
        'fileDesc'    : 'Image Files (.JPG, .GIF, .PNG)',
        'onError'     : function(event,ID,fileObj,errorObj) { 
                alert(errorObj.type + " Error " + errorObj.info); 
            },
        'onAllComplete' : function(event,data) {
}
         });

         $('#btn_upload').click(function() {


            // alert("k");
             $('#gallery_uploader').uploadifySettings('script','<?=base_url()?>c_gallery/uploads/<?=$institute_id?>'); 
             $('#gallery_uploader').uploadifyUpload();

             });` 




             Somebody please help me..



             Thanks
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.