Howdy, Stranger!

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

Not working in FireFox
  • Ok, new to Uploadify. I have it working in IE8 but cannot seem to get it to work in FF3.5. Below is what I have, let me know what you think. I initially had the files in separate folders but I have since moved all files to one folder. I am using Classic ASP/VBScript as my server code. I am also using ASPUpload as my upload script.

    the following code is on the file upload page.


    <link rel=\"stylesheet\" type=\"text/css\" media=\"screen\" href=\"uploadify.css\" />
    <script type=\"text/javascript\" language=\"javascript\" src=\"swfobject.js\"></script>
    <script type=\"text/javascript\" language=\"javascript\" src=\"jquery.uploadify.v2.1.0.js\"></script>

    <script type=\"text/javascript\">
    jQuery(document).ready(function() {
    jQuery(\"#AgentImage\").uploadify({
    'uploader' : 'uploadify.swf',
    'script' : 'upload.asp',
    'cancelImg' : 'cancel.png',
    'auto' : true,
    'multi' : false
    });


    });


    </script>


    <td>
    <div id=\"fileQueue\"></div>
    <input type=\"file\" name=\"AgentImage\" id=\"AgentImage\" />
    </td>



    Th following code is the ASPUpload page.


    Set Upload = Server.CreateObject(\"Persits.Upload\")
    Upload.IgnoreNoPost = True

    Upload.Save(\"C:\Inetpub\wwwroot\domain.com\web\data\members\\")

    Response.Write(\"1\")


    The error is "http error" on the file upload progress div and the file does not upload.

    Any help would be grateful,
    Shawn