Howdy, Stranger!

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

Uploadify 3 Documentation
  • Is there any approximate date by when the documentation for version 3 would be released, if so please let me know I am struggling a lot in upgrading from version 2.14 to 3

    If somebody has got something which might help me please let me know
  • Please help somebody
  • I found that this page at least works partially. It doesn't actually download anything but it does make the front page.

    FWIW

    <?php
    /*
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    */
    echo $html = <<<END
    <html>
    <head>
    <title>uploadify test</title>
    <link href="/uploadify-3/uploadify.css" type="text/css" rel="stylesheet">
    <script type="text/javascript" src="/uploadify-3/jquery-1.4.2.min.js"></script>
    <script type="text/javascript" src="/uploadify-3/jquery.uploadify.min.js"></script>
    <script type="text/javascript">
    $(document).ready( function()
    {
    $('#file_upload').uploadify
    ({
    'uploader' : '/uploadify-3/uploadify.swf',
    'script' : '/uploadify-3/uploadify.php',
    'cancelImg' : '/uploadify-3/uploadify-cancel.png',
    'folder' : '/uploadify-3/Uploads',
    'auto' : true
    });
    });
    </script>
    </head>

    <body>
    <h2 style="text-align:center;">uploadify-3 tests</h2>
    <div style="border:1px dotted blue;text-align:center;">
    <input id="file_upload" name="file_upload" type="file"></div>
    </body>
    </html>
    END;

    ?>
  • The user and all related content has been deleted.