Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > asp error

Reply
Thread Tools

asp error

 
 
Lynn
Guest
Posts: n/a
 
      11-24-2003
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.SubMatches'
/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:



 
Reply With Quote
 
 
 
 
Ray at
Guest
Posts: n/a
 
      11-24-2003
Sen,

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

Ray at work

"Lynn" <0m> wrote in message
news:eTJm%...
> 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.SubMatches'
> /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:
>
>
>



 
Reply With Quote
 
 
 
 
Ray at
Guest
Posts: n/a
 
      11-24-2003
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" <0m> wrote in message
news:eTJm%...
> 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.SubMatches'
> /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:
>
>
>



 
Reply With Quote
 
Lynn
Guest
Posts: n/a
 
      11-25-2003
below is the code from line 524-550.
i am using aspnuke

If Application("adoConn_ConnectionString") = "" Then
' read the contents of the file
Set oFile = oFSO.OpenTextFile(oFSO.BuildPath(sPath, "global.asa"), 1)
sContents = oFile.ReadAll
oFile.Close
' find the connection string variable
Set oRegex = New RegExp
oRegex.Pattern = "asaConnectionString\s*=\s*""([^""]*)"""
oRegex.IgnoreCase = True
Set oMatches = oRegex.Execute(sContents)
Application.Lock
For Each oMatch In oMatches
Application("adoConn_ConnectionString") = oMatch.SubMatches(0)
Application("adoConn_CommandTimeout") = 1000
Application("adoConn_ConnectionTimeout") = 500
Next
' abort if the connection string could not be parsed
If Application("adoConn_ConnectionString") = "" Then
Response.Write "<P><B class=""error"">Unable to parse the
asaConnectionString value from: """ & sPath & "global.asa""...
ABORT!</B></P>"
Response.End
End If
Else
Application.Lock
End If

"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
news:%23mV$...
> Sen,
>
> What is the relevant code in and around the area of line 538?
>
> Ray at work
>
> "Lynn" <0m> wrote in message
> news:eTJm%...
> > 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.SubMatches'
> > /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:
> >
> >
> >

>
>



 
Reply With Quote
 
Ray at
Guest
Posts: n/a
 
      11-25-2003
Submatches requires VBS 5.5 or 5.6.
http://msdn.microsoft.com/library/en...nformation.asp
Install the latest version of the Windows Scripting Host (5.6) from
http://msdn.microsoft.com/downloads/list/webdev.asp

Ray at home

"Lynn" <0m> wrote in message
news:...
> below is the code from line 524-550.
> i am using aspnuke
>
> If Application("adoConn_ConnectionString") = "" Then
> ' read the contents of the file
> Set oFile = oFSO.OpenTextFile(oFSO.BuildPath(sPath, "global.asa"), 1)
> sContents = oFile.ReadAll
> oFile.Close
> ' find the connection string variable
> Set oRegex = New RegExp
> oRegex.Pattern = "asaConnectionString\s*=\s*""([^""]*)"""
> oRegex.IgnoreCase = True
> Set oMatches = oRegex.Execute(sContents)
> Application.Lock
> For Each oMatch In oMatches
> Application("adoConn_ConnectionString") = oMatch.SubMatches(0)
> Application("adoConn_CommandTimeout") = 1000
> Application("adoConn_ConnectionTimeout") = 500
> Next
> ' abort if the connection string could not be parsed
> If Application("adoConn_ConnectionString") = "" Then
> Response.Write "<P><B class=""error"">Unable to parse the
> asaConnectionString value from: """ & sPath & "global.asa""...
> ABORT!</B></P>"
> Response.End
> End If
> Else
> Application.Lock
> End If
>
> "Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
> news:%23mV$...
> > Sen,
> >
> > What is the relevant code in and around the area of line 538?
> >
> > Ray at work
> >
> > "Lynn" <0m> wrote in message
> > news:eTJm%...
> > > 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.SubMatches'
> > > /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:
> > >
> > >
> > >

> >
> >

>
>



 
Reply With Quote
 
Lynn
Guest
Posts: n/a
 
      11-25-2003
how do i check the version of vbs i am running?

"Ray at <%=sLocation%>" <myfirstname at lane 34 . komm> wrote in message
news:...
> Submatches requires VBS 5.5 or 5.6.
>

http://msdn.microsoft.com/library/en...nformation.asp
> Install the latest version of the Windows Scripting Host (5.6) from
> http://msdn.microsoft.com/downloads/list/webdev.asp
>
> Ray at home
>
> "Lynn" <0m> wrote in message
> news:...
> > below is the code from line 524-550.
> > i am using aspnuke
> >
> > If Application("adoConn_ConnectionString") = "" Then
> > ' read the contents of the file
> > Set oFile = oFSO.OpenTextFile(oFSO.BuildPath(sPath, "global.asa"), 1)
> > sContents = oFile.ReadAll
> > oFile.Close
> > ' find the connection string variable
> > Set oRegex = New RegExp
> > oRegex.Pattern = "asaConnectionString\s*=\s*""([^""]*)"""
> > oRegex.IgnoreCase = True
> > Set oMatches = oRegex.Execute(sContents)
> > Application.Lock
> > For Each oMatch In oMatches
> > Application("adoConn_ConnectionString") = oMatch.SubMatches(0)
> > Application("adoConn_CommandTimeout") = 1000
> > Application("adoConn_ConnectionTimeout") = 500
> > Next
> > ' abort if the connection string could not be parsed
> > If Application("adoConn_ConnectionString") = "" Then
> > Response.Write "<P><B class=""error"">Unable to parse the
> > asaConnectionString value from: """ & sPath & "global.asa""...
> > ABORT!</B></P>"
> > Response.End
> > End If
> > Else
> > Application.Lock
> > End If
> >
> > "Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
> > news:%23mV$...
> > > Sen,
> > >
> > > What is the relevant code in and around the area of line 538?
> > >
> > > Ray at work
> > >
> > > "Lynn" <0m> wrote in message
> > > news:eTJm%...
> > > > 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.SubMatches'
> > > > /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:
> > > >
> > > >
> > > >
> > >
> > >

> >
> >

>
>



 
Reply With Quote
 
Ray at
Guest
Posts: n/a
 
      11-25-2003
http://msdn.microsoft.com/library/en...ildversion.asp
http://msdn.microsoft.com/library/en...jorversion.asp
http://msdn.microsoft.com/library/en...norversion.asp

Ray at home

"Lynn" <0m> wrote in message
news:...
> how do i check the version of vbs i am running?
>
> "Ray at <%=sLocation%>" <myfirstname at lane 34 . komm> wrote in message
> news:...
> > Submatches requires VBS 5.5 or 5.6.
> >

>

http://msdn.microsoft.com/library/en...nformation.asp
> > Install the latest version of the Windows Scripting Host (5.6) from
> > http://msdn.microsoft.com/downloads/list/webdev.asp
> >
> > Ray at home
> >
> > "Lynn" <0m> wrote in message
> > news:...
> > > below is the code from line 524-550.
> > > i am using aspnuke
> > >
> > > If Application("adoConn_ConnectionString") = "" Then
> > > ' read the contents of the file
> > > Set oFile = oFSO.OpenTextFile(oFSO.BuildPath(sPath, "global.asa"),

1)
> > > sContents = oFile.ReadAll
> > > oFile.Close
> > > ' find the connection string variable
> > > Set oRegex = New RegExp
> > > oRegex.Pattern = "asaConnectionString\s*=\s*""([^""]*)"""
> > > oRegex.IgnoreCase = True
> > > Set oMatches = oRegex.Execute(sContents)
> > > Application.Lock
> > > For Each oMatch In oMatches
> > > Application("adoConn_ConnectionString") = oMatch.SubMatches(0)
> > > Application("adoConn_CommandTimeout") = 1000
> > > Application("adoConn_ConnectionTimeout") = 500
> > > Next
> > > ' abort if the connection string could not be parsed
> > > If Application("adoConn_ConnectionString") = "" Then
> > > Response.Write "<P><B class=""error"">Unable to parse the
> > > asaConnectionString value from: """ & sPath & "global.asa""...
> > > ABORT!</B></P>"
> > > Response.End
> > > End If
> > > Else
> > > Application.Lock
> > > End If
> > >
> > > "Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in

message
> > > news:%23mV$...
> > > > Sen,
> > > >
> > > > What is the relevant code in and around the area of line 538?
> > > >
> > > > Ray at work
> > > >
> > > > "Lynn" <0m> wrote in message
> > > > news:eTJm%...
> > > > > 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.SubMatches'
> > > > > /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:
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >

> >
> >

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
ERROR [HY000] [Microsoft][ODBC Microsoft Access Driver]General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0xffc Thread 0x228 DBC 0x437b94 Jet'. ERROR [IM006] [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr bazzer ASP .Net 0 03-30-2006 03:16 PM
Error connecting to SQLExpress 2005 locally (error: 26 - Error Locating Server/Instance Specified) hfk0 ASP .Net 2 03-27-2006 08:43 PM
ERROR [HY000] [Microsoft][ODBC Microsoft Access Driver]General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0x8fc Thread 0x934 DBC 0x437b94 Jet'. ERROR [IM006] [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr bazzer ASP .Net 1 03-24-2006 04:20 PM
ERROR [HY000] [Microsoft][ODBC Microsoft Access Driver]General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0x8fc Thread 0x934 DBC 0x437b94 Jet'. ERROR [IM006] [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr bazzer ASP .Net 0 03-24-2006 02:22 PM
Error 500: ERROR: Cannot forward. Writer or Stream already obtained. Error JavaQueries Java 1 03-01-2005 06:30 PM



Advertisments