asp error

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Lynn

    asp error

    Hi,
    I installed asp nuke and got this error, any idea?

    a.. Error Type:
    Microsoft VBScript runtime (0x800A01B6)
    Object doesn't support this property or method: 'oMatch.SubMatc hes'
    /aspnuke/lib/site_lib.asp, line 538


    a.. Browser Type:
    Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; .NET CLR 1.1.4322)

    a.. Page:
    GET /aspnuke/admin/configure.asp

    a.. Time:



  • Ray at

    #2
    Re: asp error

    Sen,

    What is the relevant code in and around the area of line 538?

    Ray at work

    "Lynn" <MarryLynn@yah0 0.c0m> wrote in message
    news:eTJm%23dqs DHA.2088@TK2MSF TNGP09.phx.gbl. ..[color=blue]
    > Hi,
    > I installed asp nuke and got this error, any idea?
    >
    > a.. Error Type:
    > Microsoft VBScript runtime (0x800A01B6)
    > Object doesn't support this property or method: 'oMatch.SubMatc hes'
    > /aspnuke/lib/site_lib.asp, line 538
    >
    >
    > a.. Browser Type:
    > Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; .NET CLR 1.1.4322)
    >
    > a.. Page:
    > GET /aspnuke/admin/configure.asp
    >
    > a.. Time:
    >
    >
    >[/color]


    Comment

    • Ray at

      #3
      Re: asp error

      Sen,

      This is some third party thing? You may want to see if they have a support
      forum and try posting there as well. This isn't your code, I'm assuming.

      Ray at work

      "Lynn" <MarryLynn@yah0 0.c0m> wrote in message
      news:eTJm%23dqs DHA.2088@TK2MSF TNGP09.phx.gbl. ..[color=blue]
      > Hi,
      > I installed asp nuke and got this error, any idea?
      >
      > a.. Error Type:
      > Microsoft VBScript runtime (0x800A01B6)
      > Object doesn't support this property or method: 'oMatch.SubMatc hes'
      > /aspnuke/lib/site_lib.asp, line 538
      >
      >
      > a.. Browser Type:
      > Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; .NET CLR 1.1.4322)
      >
      > a.. Page:
      > GET /aspnuke/admin/configure.asp
      >
      > a.. Time:
      >
      >
      >[/color]


      Comment

      • Lynn

        #4
        Re: asp error

        below is the code from line 524-550.
        i am using aspnuke

        If Application("ad oConn_Connectio nString") = "" Then
        ' read the contents of the file
        Set oFile = oFSO.OpenTextFi le(oFSO.BuildPa th(sPath, "global.asa "), 1)
        sContents = oFile.ReadAll
        oFile.Close
        ' find the connection string variable
        Set oRegex = New RegExp
        oRegex.Pattern = "asaConnectionS tring\s*=\s*""([^""]*)"""
        oRegex.IgnoreCa se = True
        Set oMatches = oRegex.Execute( sContents)
        Application.Loc k
        For Each oMatch In oMatches
        Application("ad oConn_Connectio nString") = oMatch.SubMatch es(0)
        Application("ad oConn_CommandTi meout") = 1000
        Application("ad oConn_Connectio nTimeout") = 500
        Next
        ' abort if the connection string could not be parsed
        If Application("ad oConn_Connectio nString") = "" Then
        Response.Write "<P><B class=""error"" >Unable to parse the
        asaConnectionSt ring value from: """ & sPath & "global.asa"".. .
        ABORT!</B></P>"
        Response.End
        End If
        Else
        Application.Loc k
        End If

        "Ray at <%=sLocation% >" <myfirstname at lane34 dot com> wrote in message
        news:%23mV$mtqs DHA.556@TK2MSFT NGP11.phx.gbl.. .[color=blue]
        > Sen,
        >
        > What is the relevant code in and around the area of line 538?
        >
        > Ray at work
        >
        > "Lynn" <MarryLynn@yah0 0.c0m> wrote in message
        > news:eTJm%23dqs DHA.2088@TK2MSF TNGP09.phx.gbl. ..[color=green]
        > > Hi,
        > > I installed asp nuke and got this error, any idea?
        > >
        > > a.. Error Type:
        > > Microsoft VBScript runtime (0x800A01B6)
        > > Object doesn't support this property or method: 'oMatch.SubMatc hes'
        > > /aspnuke/lib/site_lib.asp, line 538
        > >
        > >
        > > a.. Browser Type:
        > > Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; .NET CLR 1.1.4322)
        > >
        > > a.. Page:
        > > GET /aspnuke/admin/configure.asp
        > >
        > > a.. Time:
        > >
        > >
        > >[/color]
        >
        >[/color]


        Comment

        • Ray at

          #5
          Re: asp error

          Submatches requires VBS 5.5 or 5.6.
          Learn with interactive lessons and technical documentation, earn professional development hours and certifications, and connect with the community.

          Install the latest version of the Windows Scripting Host (5.6) from
          Learn with interactive lessons and technical documentation, earn professional development hours and certifications, and connect with the community.


          Ray at home

          "Lynn" <MarryLynn@yah0 0.c0m> wrote in message
          news:u0W1ltvsDH A.2340@TK2MSFTN GP12.phx.gbl...[color=blue]
          > below is the code from line 524-550.
          > i am using aspnuke
          >
          > If Application("ad oConn_Connectio nString") = "" Then
          > ' read the contents of the file
          > Set oFile = oFSO.OpenTextFi le(oFSO.BuildPa th(sPath, "global.asa "), 1)
          > sContents = oFile.ReadAll
          > oFile.Close
          > ' find the connection string variable
          > Set oRegex = New RegExp
          > oRegex.Pattern = "asaConnectionS tring\s*=\s*""([^""]*)"""
          > oRegex.IgnoreCa se = True
          > Set oMatches = oRegex.Execute( sContents)
          > Application.Loc k
          > For Each oMatch In oMatches
          > Application("ad oConn_Connectio nString") = oMatch.SubMatch es(0)
          > Application("ad oConn_CommandTi meout") = 1000
          > Application("ad oConn_Connectio nTimeout") = 500
          > Next
          > ' abort if the connection string could not be parsed
          > If Application("ad oConn_Connectio nString") = "" Then
          > Response.Write "<P><B class=""error"" >Unable to parse the
          > asaConnectionSt ring value from: """ & sPath & "global.asa"".. .
          > ABORT!</B></P>"
          > Response.End
          > End If
          > Else
          > Application.Loc k
          > End If
          >
          > "Ray at <%=sLocation% >" <myfirstname at lane34 dot com> wrote in message
          > news:%23mV$mtqs DHA.556@TK2MSFT NGP11.phx.gbl.. .[color=green]
          > > Sen,
          > >
          > > What is the relevant code in and around the area of line 538?
          > >
          > > Ray at work
          > >
          > > "Lynn" <MarryLynn@yah0 0.c0m> wrote in message
          > > news:eTJm%23dqs DHA.2088@TK2MSF TNGP09.phx.gbl. ..[color=darkred]
          > > > Hi,
          > > > I installed asp nuke and got this error, any idea?
          > > >
          > > > a.. Error Type:
          > > > Microsoft VBScript runtime (0x800A01B6)
          > > > Object doesn't support this property or method: 'oMatch.SubMatc hes'
          > > > /aspnuke/lib/site_lib.asp, line 538
          > > >
          > > >
          > > > a.. Browser Type:
          > > > Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; .NET CLR 1.1.4322)
          > > >
          > > > a.. Page:
          > > > GET /aspnuke/admin/configure.asp
          > > >
          > > > a.. Time:
          > > >
          > > >
          > > >[/color]
          > >
          > >[/color]
          >
          >[/color]


          Comment

          • Lynn

            #6
            Re: asp error

            how do i check the version of vbs i am running?

            "Ray at <%=sLocation% >" <myfirstname at lane 34 . komm> wrote in message
            news:OFjnpzvsDH A.1888@TK2MSFTN GP10.phx.gbl...[color=blue]
            > Submatches requires VBS 5.5 or 5.6.
            >[/color]
            http://msdn.microsoft.com/library/en...nformation.asp[color=blue]
            > Install the latest version of the Windows Scripting Host (5.6) from
            > http://msdn.microsoft.com/downloads/list/webdev.asp
            >
            > Ray at home
            >
            > "Lynn" <MarryLynn@yah0 0.c0m> wrote in message
            > news:u0W1ltvsDH A.2340@TK2MSFTN GP12.phx.gbl...[color=green]
            > > below is the code from line 524-550.
            > > i am using aspnuke
            > >
            > > If Application("ad oConn_Connectio nString") = "" Then
            > > ' read the contents of the file
            > > Set oFile = oFSO.OpenTextFi le(oFSO.BuildPa th(sPath, "global.asa "), 1)
            > > sContents = oFile.ReadAll
            > > oFile.Close
            > > ' find the connection string variable
            > > Set oRegex = New RegExp
            > > oRegex.Pattern = "asaConnectionS tring\s*=\s*""([^""]*)"""
            > > oRegex.IgnoreCa se = True
            > > Set oMatches = oRegex.Execute( sContents)
            > > Application.Loc k
            > > For Each oMatch In oMatches
            > > Application("ad oConn_Connectio nString") = oMatch.SubMatch es(0)
            > > Application("ad oConn_CommandTi meout") = 1000
            > > Application("ad oConn_Connectio nTimeout") = 500
            > > Next
            > > ' abort if the connection string could not be parsed
            > > If Application("ad oConn_Connectio nString") = "" Then
            > > Response.Write "<P><B class=""error"" >Unable to parse the
            > > asaConnectionSt ring value from: """ & sPath & "global.asa"".. .
            > > ABORT!</B></P>"
            > > Response.End
            > > End If
            > > Else
            > > Application.Loc k
            > > End If
            > >
            > > "Ray at <%=sLocation% >" <myfirstname at lane34 dot com> wrote in message
            > > news:%23mV$mtqs DHA.556@TK2MSFT NGP11.phx.gbl.. .[color=darkred]
            > > > Sen,
            > > >
            > > > What is the relevant code in and around the area of line 538?
            > > >
            > > > Ray at work
            > > >
            > > > "Lynn" <MarryLynn@yah0 0.c0m> wrote in message
            > > > news:eTJm%23dqs DHA.2088@TK2MSF TNGP09.phx.gbl. ..
            > > > > Hi,
            > > > > I installed asp nuke and got this error, any idea?
            > > > >
            > > > > a.. Error Type:
            > > > > Microsoft VBScript runtime (0x800A01B6)
            > > > > Object doesn't support this property or method: 'oMatch.SubMatc hes'
            > > > > /aspnuke/lib/site_lib.asp, line 538
            > > > >
            > > > >
            > > > > a.. Browser Type:
            > > > > Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; .NET CLR[/color][/color][/color]
            1.1.4322)[color=blue][color=green][color=darkred]
            > > > >
            > > > > a.. Page:
            > > > > GET /aspnuke/admin/configure.asp
            > > > >
            > > > > a.. Time:
            > > > >
            > > > >
            > > > >
            > > >
            > > >[/color]
            > >
            > >[/color]
            >
            >[/color]


            Comment

            • Ray at

              #7
              Re: asp error

              Learn with interactive lessons and technical documentation, earn professional development hours and certifications, and connect with the community.

              Learn with interactive lessons and technical documentation, earn professional development hours and certifications, and connect with the community.

              Learn with interactive lessons and technical documentation, earn professional development hours and certifications, and connect with the community.


              Ray at home

              "Lynn" <MarryLynn@yah0 0.c0m> wrote in message
              news:ed2qQ7vsDH A.2304@TK2MSFTN GP12.phx.gbl...[color=blue]
              > how do i check the version of vbs i am running?
              >
              > "Ray at <%=sLocation% >" <myfirstname at lane 34 . komm> wrote in message
              > news:OFjnpzvsDH A.1888@TK2MSFTN GP10.phx.gbl...[color=green]
              > > Submatches requires VBS 5.5 or 5.6.
              > >[/color]
              >[/color]
              http://msdn.microsoft.com/library/en...nformation.asp[color=blue][color=green]
              > > Install the latest version of the Windows Scripting Host (5.6) from
              > > http://msdn.microsoft.com/downloads/list/webdev.asp
              > >
              > > Ray at home
              > >
              > > "Lynn" <MarryLynn@yah0 0.c0m> wrote in message
              > > news:u0W1ltvsDH A.2340@TK2MSFTN GP12.phx.gbl...[color=darkred]
              > > > below is the code from line 524-550.
              > > > i am using aspnuke
              > > >
              > > > If Application("ad oConn_Connectio nString") = "" Then
              > > > ' read the contents of the file
              > > > Set oFile = oFSO.OpenTextFi le(oFSO.BuildPa th(sPath, "global.asa "),[/color][/color][/color]
              1)[color=blue][color=green][color=darkred]
              > > > sContents = oFile.ReadAll
              > > > oFile.Close
              > > > ' find the connection string variable
              > > > Set oRegex = New RegExp
              > > > oRegex.Pattern = "asaConnectionS tring\s*=\s*""([^""]*)"""
              > > > oRegex.IgnoreCa se = True
              > > > Set oMatches = oRegex.Execute( sContents)
              > > > Application.Loc k
              > > > For Each oMatch In oMatches
              > > > Application("ad oConn_Connectio nString") = oMatch.SubMatch es(0)
              > > > Application("ad oConn_CommandTi meout") = 1000
              > > > Application("ad oConn_Connectio nTimeout") = 500
              > > > Next
              > > > ' abort if the connection string could not be parsed
              > > > If Application("ad oConn_Connectio nString") = "" Then
              > > > Response.Write "<P><B class=""error"" >Unable to parse the
              > > > asaConnectionSt ring value from: """ & sPath & "global.asa"".. .
              > > > ABORT!</B></P>"
              > > > Response.End
              > > > End If
              > > > Else
              > > > Application.Loc k
              > > > End If
              > > >
              > > > "Ray at <%=sLocation% >" <myfirstname at lane34 dot com> wrote in[/color][/color][/color]
              message[color=blue][color=green][color=darkred]
              > > > news:%23mV$mtqs DHA.556@TK2MSFT NGP11.phx.gbl.. .
              > > > > Sen,
              > > > >
              > > > > What is the relevant code in and around the area of line 538?
              > > > >
              > > > > Ray at work
              > > > >
              > > > > "Lynn" <MarryLynn@yah0 0.c0m> wrote in message
              > > > > news:eTJm%23dqs DHA.2088@TK2MSF TNGP09.phx.gbl. ..
              > > > > > Hi,
              > > > > > I installed asp nuke and got this error, any idea?
              > > > > >
              > > > > > a.. Error Type:
              > > > > > Microsoft VBScript runtime (0x800A01B6)
              > > > > > Object doesn't support this property or method:[/color][/color][/color]
              'oMatch.SubMatc hes'[color=blue][color=green][color=darkred]
              > > > > > /aspnuke/lib/site_lib.asp, line 538
              > > > > >
              > > > > >
              > > > > > a.. Browser Type:
              > > > > > Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; .NET CLR[/color][/color]
              > 1.1.4322)[color=green][color=darkred]
              > > > > >
              > > > > > a.. Page:
              > > > > > GET /aspnuke/admin/configure.asp
              > > > > >
              > > > > > a.. Time:
              > > > > >
              > > > > >
              > > > > >
              > > > >
              > > > >
              > > >
              > > >[/color]
              > >
              > >[/color]
              >
              >[/color]


              Comment

              Working...