Huge ASP file upload and ActiveX error

Ask a Question related to ASP, Design and Development.

  1. #1

    Default Huge ASP file upload and ActiveX error

    Hello,

    I (well someone else) need to upload large files. I had the Huge ASP
    upload installed (Pstruh). It came recommended here.

    Using the sample script I get this error when uploading:

    Error Type:
    Microsoft VBScript runtime (0x800A01AD)
    ActiveX component can't create object: 'ScriptUtils.ByteArray'
    /upload.inc, line 53

    What does that mean?

    Jeff
    Jeff Thies Guest

  2. Similar Questions and Discussions

    1. How to upload a file to 2 FTP sites without an upload component for company
      Hi All I can't get round this because it's a local government thing, but I've done a CMS for a school (in ASP classic) that allows them to upload...
    2. error on file upload
      Has anyone had this problem... my client is using Contribute CS3 on a mac and getting this error when he tries to upload and link to a PDF. "While...
    3. Get an error when trying to upload a file on CF 4.5using makeunique.
      I've recently taken over an old application that uses ColdFusion 4.5. I'm experiencing a problem with pages that use the CFFILE tag with attribute...
    4. Upload huge file size: "The page cannot be displayed" browser error
      I have an upload file operation in the web application. UploadForm.asp is the form, and UploadAction.asp is the form processing. ...
    5. File upload. Huge files
      Hi, This is topic that has been discussed thousand times, however. Classic approach is to use HttpPostedFile object, check if it's not null, and...
  3. #2

    Default Re: Huge ASP file upload and ActiveX error


    "Jeff Thies" <cyberjeff@sprintmail.com> wrote in message
    news:3F432B7C.1E88BB3A@sprintmail.com...
    > Hello,
    >
    > I (well someone else) need to upload large files. I had the Huge ASP
    > upload installed (Pstruh). It came recommended here.
    >
    > Using the sample script I get this error when uploading:
    >
    > Error Type:
    > Microsoft VBScript runtime (0x800A01AD)
    > ActiveX component can't create object: 'ScriptUtils.ByteArray'
    > /upload.inc, line 53
    >
    > What does that mean?
    >
    > Jeff

    Well it means there is an error in line 53

    Post the line (53) pzl :)


    Paal


    Paal Andersen Guest

  4. #3

    Default Re: Huge ASP file upload and ActiveX error



    Paal Andersen wrote:
    >
    > "Jeff Thies" <cyberjeff@sprintmail.com> wrote in message
    > news:3F432B7C.1E88BB3A@sprintmail.com...
    > > Hello,
    > >
    > > I (well someone else) need to upload large files. I had the Huge ASP
    > > upload installed (Pstruh). It came recommended here.
    > >
    > > Using the sample script I get this error when uploading:
    > >
    > > Error Type:
    > > Microsoft VBScript runtime (0x800A01AD)
    > > ActiveX component can't create object: 'ScriptUtils.ByteArray'
    > > /upload.inc, line 53
    > >
    > > What does that mean?
    > >
    > > Jeff
    >
    > Well it means there is an error in line 53
    >
    > Post the line (53) pzl :)
    It's just this:

    Set Binary = CreateObject("ScriptUtils.ByteArray") 'Creates ByteArray
    object

    There's an OCX named ScptUtl.OCX, could it be referring to a problem
    in there? If so what?

    You know that other environments give more usefull error messages!!!

    Jeff
    >
    > Paal
    Jeff Thies Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139