control not working with FireFox 3.6

Last post 05-27-2010, 8:08 PM by cutechat. 9 replies.
Sort Posts: Previous Next
  •  02-01-2010, 12:14 PM 58480

    control not working with FireFox 3.6

    I upgraded to the latest version of FireFox and your control no longer works. It still works in chrome , ie, and older versions of firefox. When will the fix for this be available?
  •  02-01-2010, 12:37 PM 58481 in reply to 58480

    Re: control not working with FireFox 3.6

    Japchatt,
     
    We've tested the control in Firefox 3.6 and it works ok.
     
    Firefox:
     
    Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.2) Gecko/20100115 Firefox/3.6 (.NET CLR 3.5.30729)

    Can you try the following example and get back to me?
     
     
    Keep me posted

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  02-16-2010, 6:49 AM 58712 in reply to 58481

    Re: control not working with FireFox 3.6

    I'm having the same issue. Prior version of Firefox worked fine, now uploader crashes Firefox.
     
    IE, Chrome, Safari and Opera (all latest versions) work fine?????????????
     
    VERY SIMPLE PAGE -- Crashes DURING uploader never gets to 'OnFileUploaded' callback.
     
     
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Uploader.aspx.cs" Inherits="CyberSafe.Uploader" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <
    html xmlns="http://www.w3.org/1999/xhtml">
    <
    head runat="server">
     
    <title></title>

    </head>

    <body style="background-color: White;">

    <form id="form1" runat="server">

    <asp:ScriptManager ID="scriptManager" runat="server">

    </asp:ScriptManager>

    <asp:HiddenField ID="hfTimeZoneOffset" runat="server" />

    <div style="text-align: left;">

    <CuteWebUI:Uploader ID="upLoader" runat="server" MultipleFilesUpload="True" OnFileUploaded="FileUploaded"

    InsertText="Upload" TempDirectory="~/Temporary/">

    <ValidateOption AllowedFileExtensions="jpg,jpeg,png,gif,bmp,pdf,xls,doc,zip,ppt,text,txt,rtf,tif,tiff" />

    </CuteWebUI:Uploader>

    </div>

    </form>

    </body>

    </html>

  •  02-16-2010, 9:02 AM 58718 in reply to 58712

    Re: control not working with FireFox 3.6

    Dear mcslayton,
     
     
    Please save the following content to test.aspx, and copy it to the ajax uploader root, I have tested several times in ff3.6, work fine.

    <%@ Page Language="C#" %>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <script runat="server">
        void InsertMsg(string msg)
        {
            ListBoxEvents.Items.Insert(0, msg);
            ListBoxEvents.SelectedIndex = 0;
        }
        void Uploader_FileUploaded(object sender, UploaderEventArgs args)
        {
             InsertMsg("File uploaded! " + args.FileName + ", " + args.FileSize + " bytes.");

            //Copys the uploaded file to a new location.
            args.CopyTo("d:\\temp\\"+args.FileName);
            //You can also open the uploaded file's data stream.
            //System.IO.Stream data = args.OpenStream();
        }
    </script>

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head1" runat="server">
        <title>Selecting multiple files for upload</title>
        <link rel="stylesheet" href="demo.css" type="text/css" />
    </head>
    <body>
        <form id="form1" runat="server">
            <div class="content">
                <h2>
                    Selecting multiple files for upload</h2>
                <p>
                    Select multiple files in the file browser dialog then upload them at once</p>
                <CuteWebUI:Uploader runat="server" ID="Uploader1" InsertText="Upload Multiple Files (Max 10M)"
                    MultipleFilesUpload="true" OnFileUploaded="Uploader_FileUploaded">
                    <ValidateOption MaxSizeKB="10240" />
                </CuteWebUI:Uploader>
                <br />
                <br />
                <div>
                    Server Trace:
                    <br />
                    <asp:ListBox runat="server" ID="ListBoxEvents" Width="400"></asp:ListBox>
                </div>
            </div>
        </form>
    </body>
    </html>
     

     
    Regards,
    Eric
  •  02-16-2010, 9:03 PM 58745 in reply to 58718

    Re: control not working with FireFox 3.6

    Eric,
     
    Did as instructed and Firefox 3.6 crashes with following report:
     
    Add-ons: firebug@software.joehewitt.com:1.5.0,{a7c6cf7f-112c-4500-a7ea-39801a327e5f}:1.0.7,{CAFEEFAC-0016-0000-0014-ABCDEFFEDCBA}:6.0.14,{20a82645-c095-46ed-80e3-08825760534b}:1.1,VMwareVMRC@vmware.com:2.5.0.122581,{c45c406e-ab73-11d8-be73-000a95be3b12}:1.1.8,yslow@yahoo-inc.com:2.0.6,{972ce4c6-7e08-4474-a285-3208198ce6fd}:3.6
    BuildID: 20100115144158
    CrashTime: 1266375655
    EMCheckCompatibility: true
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1264193601
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 143
    StartupTime: 1266375650
    Theme: classic/1.0
    Throttleable: 1
    URL: http://localhost/AjaxUploader/Test.aspx
    Vendor: Mozilla
    Version: 3.6

    This report also contains technical information about the state of the application when it crashed. 
  •  02-16-2010, 9:15 PM 58746 in reply to 58745

    Re: control not working with FireFox 3.6

    Eric,
     
    FYI...I disabled all of the Add-Ons and AjaxUploader worked fine. Re-enabled Firebug and Firefox v3.6 crashed. Not good.
     
    I'll send a message over to Firebug to see if they have any ideas.
     
    Thanks,
    Marv
     
    PS: You don't test with Firebug???
  •  02-16-2010, 9:22 PM 58747 in reply to 58746

    Re: control not working with FireFox 3.6

    Eric,
     
    Went to Firebug site and found v1.6X.0a5, downloaded it and re-tested Firefox v3.6. Everything is working fine now with Firefox, Firebug and AjaxUploader.
     
    Thanks for your help.
     
    Marv 
  •  05-27-2010, 11:28 AM 61395 in reply to 58480

    Re: control not working with FireFox 3.6

    The browse button does not initialize a dialog for the user to select files.
    This issue persists. It is intermittent but does occur often.
     
    The issue has been replicated on your own demo site
    http://ajaxuploader.com/Demo/simple-upload.aspx
    WHEN WILL A NEW VERSION OF AJAX UPLOADER BE AVAILABLE?
     
    when I navigate to the Browse button by tabbing and then press enter i get this error
     
     
     
    I cannot click the button however somehow that is being blocked.
     
  •  05-27-2010, 8:04 PM 61401 in reply to 58747

    Re: control not working with FireFox 3.6

    Marv,
     
    It seems that the firebug have bug working with the Flash/Silverlight.
     
    That's a good news that the new firebug have fix the issue.
     
    Regards,
    Terry
  •  05-27-2010, 8:08 PM 61403 in reply to 61395

    Re: control not working with FireFox 3.6

    jpchatt,
     
    That is expected behavior.
     
    Because when the Flash version >=10 or Silverlight version >=3
     
    The addon do now allow javascript show the browsing dialog.
     
    So AjaxUploader put a transparent layer , and let user click the Flash/Silverlight to show the dialog.
     
    If you tab to the HTML button , it will fire button.onclick , it can't show the dialog.
     
    So we can only show a warning panel , and try to let user click the Flash/Sliverlight again.
     
    (Right click the button or the warning panel, you can see Flash/Silverlight menu)
     
     
    If you want to avoid that issue, you can set 
     
    UploadAddonButtonMode="Replace" (ASPX CODE)
     
    Uploader.UploadAddonButtonMode= UploadAddonButtonMode.Replace; (C# CODE)
     
    Regards,
    Terry
     
     
View as RSS news feed in XML