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.
Not able to upload the 1gb WMV file and also 2 mb flv file
  • I would like to upload .wmv and .flv files using Uploadify and PHP. However, I can't seem to get it right.

    Here's my code:

    $(function() {
    $("#file_upload").uploadify({
    'swf' : 'uploadify/uploadify.swf',
    'uploader' : 'uploadify/uploadify.php',
    'uploadLimit' : 1,
    'folder' : 'uploads',
    'method' : 'post',
    'auto' : true,
    'multi' : true,
    'fileExt' : '*.jpg; *.gif; *.png; *.jpeg; *.wmv; *.flv',

    'onUploadSuccess' : function(file, data, response) {
    alert('The file was saved to: ' + file);
    }
    });
    });

    my uplodify.php



    $targetFolder = '/uploads';
    if (!empty($_FILES)) {
    $tempFile = $_FILES['Filedata']['tmp_name'];
    $targetPath = $_SERVER['DOCUMENT_ROOT'] . $targetFolder;
    $targetFile = rtrim($targetPath,'/') . '/' . $_FILES['Filedata']['name'];

    $fileTypes = array('jpg','jpeg','gif','png','wmv'); // File extensions
    $fileParts = pathinfo($_FILES['Filedata']['name']);

    move_uploaded_file($tempFile,$targetFile);
    }

    Any ideas as to what I'm doing wrong?