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.
uploads won't work after generate a folder by php
  • Hello,

    php will generate a folder for the upload.
    The upload starts and after it has completed, there will be no file in the folder.

    <?php
    $verzeichnis = time();
    $verzeichnis_gal = $verzeichnis.'-gallery';
    //Erstellt ein Verzeichnis ausgehend von der Lage des Skriptes
    mkdir(\"$verzeichnis\", 0777);
    $linkforcustomer = 'Link for this special folder: http://www.demo.eu/special/action.php?show='.$verzeichnis;
    chmod (\"$verzeichnis\", 0777);


    ?>

    <head>
    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />
    <title>Upload Files for special folders</title>
    <link rel=\"stylesheet\" href=\"uploadify.css\" type=\"text/css\" />
    <script type=\"text/javascript\" src=\"jquery-1.3.2.min.js\"></script>
    <script type=\"text/javascript\" src=\"swfobject.js\"></script>
    <script type=\"text/javascript\" src=\"jquery.uploadify.v2.1.0.min.js\"></script>

    <script type=\"text/javascript\">
    $(document).ready(function() {
    $(\"#fileInput4\").uploadify({
    <?php
    echo \"
    'uploader' : 'uploadify.swf',
    'script' : 'uploadify.php',
    'cancelImg' : 'cancel.png',
    'folder' : '\".$verzeichnis.\"',
    'wmode' : 'transparent',
    'width' : 130,
    'queueID' : 'fileQueue',
    'fileDesc' : 'Image Files (*.jpg, *.JPG)',
    'fileExt' : '*.jpg;*.JPG',
    'auto' : true,
    'multi' : true
    \";
    ?>
    }); });
    </script>

    </head>


    <div class=\"demo\">
    <p><strong>File Upload</strong></p>

    <div id=\"fileQueue\" style=\"width:400px;height:550px;border:1px solid #E5E5E5;padding: 0;overflow:auto;margin-bottom: 10px;\">&amp;nbsp;</div>
    <input id=\"fileInput4\" name=\"fileInput4\" type=\"file\" /></div>

    <br><br>
    <?php
    echo $linkforcustomer;
    ?>


    </body>
    </html>


    someone got an idea?

    regards

    sphings