Multiple File uploads - pepairitem:0 error

Last post 09-06-2012, 9:26 AM by Kenneth. 1 replies.
Sort Posts: Previous Next
  •  09-06-2012, 1:36 AM 74581

    Multiple File uploads - pepairitem:0 error

    When I try to select multiple files (2000 in number) in Ajax Uploader open dialog then the File Name path becomes empty. If I click open then I get this error as explained in the figure :

    <--How to get rid of this unwanted  error message?

    After I click OK, I get another error message "Unable to select so many files at once. The total file name length cannot exceed 32kb".<--This message if fine.
  •  09-06-2012, 9:26 AM 74583 in reply to 74581

    Re: Multiple File uploads - pepairitem:0 error

    Hi sansindia85,

     

    Please try add the code below to the bottom of your uploader page. It will catch this error and hide the message.

     

    <script>
       function CuteWebUI_AjaxUploader_OnError(msg)
        {
            if(msg.indexOf("prepairitem:0")!=-1)
            {
               return false;
            }
        }
    </script>
     

    More details about how to catch the uploader error, please refer to http://www.ajaxuploader.com/document/scr/How-to-catch-uploader-error.htm

     

    Regards,

     

    Ken 

View as RSS news feed in XML