Howdy, Stranger!

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

3.0 BUG? Uploader/Script reversed?
  • Solved... Here's an issue for the problems I have been having trying uploads with:

    JQuery 1.5
    Uploadify 3.0
    ASP Back End Script

    uploader: This is supposed to be the swf upload file, right?
    script: This is supposed to be the ASP/PHP file that handles saving the file.

    I went through hours of debugging. Strang things going on, then I checked out the source of uploadify 3.0.

    I reversed the two, and it worked perfectly the first time.

    MY CODE:

    $(document).ready(function() {
    $('#file_upload').uploadify({
    'uploader' : '/uploadify/fileupload-upload.asp', //NOT THE SWF LIKE DOCS
    'script' : '/uploadify/uploadify.swf', //NOT PHP LIKE DOCS
    'cancelImg' : '/images/cancel.png',
    'auto' : false
    });
    });


    I just hope this helps someone else out. Thanks for your time if any of you were looking into this.
  • ALSO... Forgot to mention, when I disable the 'uploader' property, and it seems to complete 100%, I get an error "setting is not defined", but because I am using the min file, I can't find out where.
  • Fixed the setting is not defined problem and am now able to use v3 full js file. Still, for some reason, it is not calling my 'script'. I started over, but nothing. I check the web logs, and there is not even a request for the script. I also noticed some requests for uploadify.swf are status 200 and some are 304, which makes me think there is something wrong with the process of uploadify.swf?
  • The user and all related content has been deleted.