Recent issue in IE8 for uploader?

Last post 09-12-2013, 1:38 PM by Besoup. 3 replies.
Sort Posts: Previous Next
  •  09-12-2013, 12:47 PM 77977

    Recent issue in IE8 for uploader?

    Hey all, we've been using the uplaoder for over a year and haven't had this issue pop up. Yesterday I was informed that when a user selects a file in IE8, it is appearing to have a filesize of -1.0 kb. Then when the user hits upload, they're getting an error: Out of Memory at line: 238.

     

    This is how the control is configured:

     

                <CuteWebUI:UploadAttachments runat="server" ID="Uploader"                 InsertButtonID="BrowseButton"                 ManualStartUpload="true" 
                     ProgressCtrlID = "progressBar"                  ProgressTextID = "progressBarText"                 ProgressTextTemplate = " "                   CancelButtonStyle-CssClass = "AjaxUploaderCancelButton"                   ProgressInfoStyle = "FontStandardBold"                    ProgressLabelStyle-CssClass = "FontStandardBold"                    ProgressLabelStyle-Font-Bold = "true"                  CancelButtonID = "btnCancelAllUploads"                  UploadType="Flash"                >                <ValidateOption MaxSizeKB="30720" />            </CuteWebUI:UploadAttachments> 

     

     

    Any ideas for a work around? The control is confirmed to be working in IE9 and greater and also chrome, firefox... etc... 

  •  09-12-2013, 12:54 PM 77978 in reply to 77977

    Re: Recent issue in IE8 for uploader?

    Hi Besoup,

     

    This is the IE browser limitation, if the client has not the Silverlight or flash plug in installed, then can not get the size on IE.
    You can add the code below to the bottom of your page, it will pop up the alert message to let the user know must has the flash or Silverlight installed if he using IE.


    1. <script>  
    2. function CuteWebUI_AjaxUploader_OnBrowse()  
    3. {  
    4.     uploader=this;  
    5.     var scope=uploader.internalobject;  
    6.     if(!scope.addontype)  
    7.     {  
    8.         alert('you must installed Flash/Silverlight or use Chrome etc..');  
    9.         return false;  
    10.     }  
    11. }  
    12. </script>  

    Regards,

     

    Ken 

  •  09-12-2013, 1:28 PM 77979 in reply to 77978

    Re: Recent issue in IE8 for uploader?

    Would the size issue cause the Memory error?
  •  09-12-2013, 1:38 PM 77980 in reply to 77979

    Re: Recent issue in IE8 for uploader?

    Besoup:
    Would the size issue cause the Memory error?

     

    Just tested this with Flash installed and it worked... thanks! 

View as RSS news feed in XML