This forum is a community forum meant for users of the plugin to collaborate and help solve issues with implementation, etc. Unfortunately, as the creator of the plugin, I do not have much time to attend to every request here as this is only a side project and I must work a full-time job to provide for my family. This is how I keep the Flash version free and the HTML5 version low cost.
UploadiFive 1.1.1 has been released which includes a small fix for added support on touch devices including iOS 6 devices.
No browse button
  • The browse button does not seem the work, it shows the swf button but when you click on it nothing happens...
    when I try this on my localhost or the button individual it does seem the work, I don't get it...
  • have you initialize the uploadify like this:


    $(document).ready(function() {
    $('#file_upload').uploadify({
    'uploader' : '/uploadify/uploadify.swf',
    'script' : '/uploadify/uploadify.php',
    'cancelImg' : '/uploadify/cancel.png',
    'folder' : '/uploads',
    'auto' : true
    });
    });


    Try to install firebug in your FF browser and it allow u to track the js error .
  • well i've put it in different folders but yes.
  • is js enable in browser?
    have you include the js file in coding?
    is the path correct?
  • the problem is that it does not show the select files window.
    but when I go to the full path of the uploader and I click on it it works fine...

    <input type="file" name="data[file_upload]" id="file_upload" style="display: none; ">

    $(document).ready(function(){
    $('#file_upload').uploadify({
    'uploader' : 'http://nabij.be/yozo/swf/uploadify.swf',
    'script': 'http://nabij.be/yozo/image',
    'cancelImg' : 'http://nabij.be/yozo/img/icons/cancel.png',
    'folder' : 'http://nabij.be/yozo/img/uploads'
    });
    });


    it changes my input field to the swf uploader but clicking on the button does nothing...
  • I also meet the same problem - V -