Hi Mart
Under here is the full global.asa, I didn't have <script language="vbscript" runat="server"> in at the top, so just tried it, it then error was
Expected statement
//global.asa, line 2
<OBJECT RUNAT="Server" so I removed this line, it fails basicly on all the <OBJECT> take these out and I then get SCOPE is undefined,
Thanks for this Mart
<SCRIPT LANGUAGE=VBScript RUNAT = Server>
<OBJECT RUNAT="Server"
SCOPE="Application"
ID="conquerChatUsers"
PROGID="Scripting.Dictionary">
</OBJECT>
<OBJECT
RUNAT="Server"
SCOPE="Application"
ID="conquerChatRooms"
PROGID="Scripting.Dictionary">
</OBJECT>
<OBJECT
RUNAT="Server"
SCOPE="Application"
ID="conquerChatMessages"
PROGID="Scripting.Dictionary">
</OBJECT>
Sub Application_OnStart
Application("Active")=0
End Sub
Sub Session_OnStart
Session.Timeout = 15
Session("Start") = Now
Application.lock
Application("Active") = Application("Active") + 1
Application.unlock
End Sub
sub Session_OnEnd
'decrease by 1 when session ends
Application.lock
Application("Active") = Application("Active") - 1
Application.unlock
End Sub
</script>