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.
My upload directory is empty.
  • Hello all!

    I'm trying to get Uploadifive working on my site.

    When I test the live page and try to upload a file, the widget says "Upload Complete", but when I check my upload directory it's empty.


    Anyone have an idea of what my issue is?
  • $uploadDir = '/uploads/';
    Check that line and make sure you are looking into the right upload directory.
  • It seems dosent work. I use sth like that

    $targetFolder = '/uploads/'; // Relative to the root
    if (!empty($_FILES)) {
    $tempFile = $_FILES['Filedata']['tmp_name'];
    $targetPath = $_SERVER['DOCUMENT_ROOT'] . $targetFolder;

    $targetFile = rtrim($targetPath,'/') . $_FILES['Filedata']['name'];

    // Validate the file type
    $fileTypes = array('jpg','jpeg','gif','png'); // File extensions
    $fileParts = pathinfo($_FILES['Filedata']['name']);
    if (in_array($fileParts['extension'],$fileTypes)) {
    move_uploaded_file($tempFile,$targetFile);
    echo '1';
    } else {
    echo 'Invalid file type.';
    }
    }