Howdy, Stranger!

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

files dont upload
  • i implemented this exacttly as the documentation.

    however when i select a file nothing happens. the file path name is in the text box but it doesnt get uploaded. whether i set auto to true or false makes no difference. when set to false should i not see a link to confirm upload?

    all files from zip file added to Scripts/uploadify folder

    anyway can anyone help?

    heres my code

    <link href="/Scripts/uploadify/uploadify.css" type="text/css" rel="stylesheet" />
    <script type="text/javascript" src="/Scripts/uploadify/jquery-1.4.2.min.js"></script>
    <script type="text/javascript" src="/Scripts/uploadify/swfobject.js"></script>
    <script type="text/javascript" src="/Scripts/uploadify/jquery.uploadify.v2.1.4.min.js"></script>
    <script type="text/javascript">
    $(document).ready(function() {
    $('#file_upload').uploadify({
    'uploader' : '/Scripts/uploadify/uploadify.swf',
    'script' : '/Scripts/uploadify/uploadify.php',
    'cancelImg' : '/Scripts/uploadify/cancel.png',
    'folder' : '/Scripts/uploads',
    'auto' : true
    });
    });
    </script>



  • head section

    <link href="/Scripts/uploadify/uploadify.css" type="text/css" rel="stylesheet" />
    <script type="text/javascript" src="/Scripts/uploadify/jquery-1.4.2.min.js"></script>
    <script type="text/javascript" src="/Scripts/uploadify/swfobject.js"></script>
    <script type="text/javascript" src="/Scripts/uploadify/jquery.uploadify.v2.1.4.min.js"></script>
    <script type="text/javascript">
    $(document).ready(function() {
    $('#file_upload').uploadify({
    'uploader' : '/uploadify/uploadify.swf',
    'script' : '/uploadify/uploadify.php',
    'cancelImg' : '/uploadify/cancel.png',
    'folder' : '/uploads',
    'auto' : true
    });
    });
    </script>



    body section


    <input id="file_upload" name="file_upload" type="file" />
  • I have the exact same problem. I don't know what to do!
    Everything appears normally, but the upload doesn't start, even though auto is set to true and the folder has permissions 777.