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.
uploading big file
  • Hi all
    i try to upload big file (10,6 Mb (11 177 839 bytes)) but when progress bar come to 100% it's stoped.
    I try to wayt 10 and 20 minutes, but nothink.
    How can i fix it?
  • That’s not a big file, I have gotten them up to around 150mb so far. You need to use firebug and check the response back to tell you where your error is.
  • Can you upload files around 500-600 mb without having problems with the timeouts?
  • This appears to be a similar issue to what a lot of us are having... no files over 10MB are able to be found after what appears to be a successful upload. No errors are produced.

    Any support on this?
  • I downloaded the installation zip yesterday, followed the instructions under documentation in a .html and the file worked for me with a 14mb file. Right now I am testing with a 40mb file.
    Lets see if it works. But my goal is to make it work with file around 500-600 MB. Any one has a hint?
  • i have the same when my file is bigger then 10mb progress bar come to 100% it's stoped.

    but the 'onAllComplete': function(event, data) {
    window.location.href='newuser.php?id=".USERID."&page=mp3show';
    } });


    is not starting

    any ideas
  • my code is

    $(document).ready(function() {
    $('#file_upload').uploadify({
    'uploader' : 'uploadify/uploadify.swf',
    'script' : 'uploadify.php',
    'cancelImg' : 'uploadify/cancel.png',
    'folder' : 'uploads/music/',
    'buttonImg' : 'system/upload.png',
    'height' : 72,
    'width' : 72,
    'multi' : false,
    'method' : 'POST',
    'fileExt' : '*.mp3;*.rar;*.zip;*.jpg',
    'fileDesc' : 'Web Upload Files (.mp3)',
    'auto' : false,

    'onAllComplete': function(event, data, queueID, fileObj, response) {
    window.location.href='newuser.php?id=".USERID."&page=mp3show';
    } });



    $('#file_upload').uploadifyUpload();
    });
  • I'm having the same problem. I can't find the answer anywhere on the internet. Does the development team follow the forums? Maybe they would want to help some of their user base?
  • yes please help us "!!!!
  • nobody ??
  • mmh no help here ??
  • yeah, the same problem, some files are uploaded ok, and some not
    the difference in size or resolution doesn't matter, firebug doesn't say anything,
    uploadify fires the check.php - check goes OK and then in some cases nothing happens, the upload.php isn't run
  • what is here no support ?? please can anyone help
  • THE SOLUTION IN THIS ISSUE IS .....

    go to php.ini and find the

    - upload_max_filesize - set to 100M

    - post_max_size - set to 100M

    - max_execution_time - set to 120

    - max_input_time - set to 120

    after all, restart the apache

    now you can upload 100mb files.....
  • ok someone educate a newbie, where is this PHP.ini file, or where should I create one? My issue is that I get no error my onAllComplete says it was uploaded and there is no file. Seems only the smaller files are coming over. Thoughts anyone???