Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

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 -