Howdy, Stranger!

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

Anything over 10MB
  • First off, I love the concept and how this works. Nice job. However, I'm having issues uploading anything over 10MB. I did some research on the forum and elsewhere and I do have the post_max_size and upload_max_size are both set well above 10MB. The animation of the upload bar even works. However, once it gets up to 100%, it stops and does not continue to the next file. When I look on the server, no file was uploaded. I've switched the order of files being uploaded, and when a smaller one is before the 12MB file, the small one uploads and then again, when it finishes the animation of uploading the large file, it hangs. I don't even get the alert message in my onAllComplete function. Any help would be appreciated.

    Here are some of my specs that possibly could be wrong.

    Hosted on a 1and1 shared hosting account.
    There was no initial php.ini file located on my root directory, but I created one and I put this in it:
    post_max_size = 800000000
    upload_max_filesize = 800000000


    I also added a settings.php file with this in it:
    ini_set('post_max_size', '800000000');
    ini_set('upload_max_filesize', '800000000');


    And I have a .htaccess file with this in it:
    AddType x-mapp-php5 .php


    My uploadify script:
    $('#fileInput').uploadify({
    'uploader' : '../scripts/jquery/uploadify/uploadify.swf',
    'script' : '../scripts/jquery/uploadify/uploadify.php',
    'cancelImg' : '../scripts/jquery/uploadify/cancel.png',
    'folder' : '/clients/uploads/<?php echo $projectID.'/'; ?>',
    'multi' : true,
    'sizeLimit' : '62914560',
    'onAllComplete' : function(e, d) {
    if (d.errors == 0) { $("#form").submit(); }
    else { alert("Errors uploading files"); return false; }
    }
    });

    Please help! - Thanx in advance.
  • Any chance there has been a solution found for this problem? I have the same issue, my file uploads to 100% then just hangs there, nothing else happens, it does not disappear after it gets to 100% like it should.
  • I'm having the same problem, apparently no one has a solution, or at least I haven't been able to find it. This is the first time I've been able to find someone having the EXACT SAME PROBLEM as I am. too bad I really don't want to re-write for another library I really need a solution here.
  • I am also having the same problem. No idea what this major malfunction is...
  • I'm with justinb - I've had this problem for nearly a year, and just kinda am living with it (any files larger than 10mb I have to FTP, then manually run the other scripts that usually run after uploadify). This is the first time I've seen someone else (x4) who's having the same problem. I've checked EVERY file that runs, for some kind of hard coded file size limit, but none found. Although, I too am with 1and1 shared hosting... could it be a setting with them? are you other fellas using 1and1?
  • I'm with justinb - I've had this problem for nearly a year, and just kinda am living with it (any files larger than 10mb I have to FTP, then manually run the other scripts that usually run after uploadify). This is the first time I've seen someone else (x4) who's having the same problem. I've checked EVERY file that runs, for some kind of hard coded file size limit, but none found. Although, I too am with 1and1 shared hosting... could it be a setting with them? are you other fellas using 1and1?
  • This is most likely a problem with your host try and call them for support. I am hosted with siteground and they limited me to just 50 megs so I called them up and they changed something on there side works perfect now.
  • The user and all related content has been deleted.