Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: MOD Implementation
 Active Users Page ERROR / Double Time Stamp ERROR
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

Yellow Aftershock
New Member

55 Posts

Posted - 21 August 2002 :  17:21:29  Show Profile
I have installed the active users MOD- and followed the instructions, however I am getting this error !

Microsoft VBScript compilation error '800a03ee'

Expected ')'

/forum2/inc_func_common.asp, line 125

if cInt(intTotalActiveUsers) > cInt(intAURecord then) 'We have a new record!!! :)
------------------------------------------------^


thats going on here ?

Edited by - Yellow Aftershock on 21 August 2002 19:56:27

Yellow Aftershock
New Member

55 Posts

Posted - 21 August 2002 :  17:40:45  Show Profile
Can anyone help ?
I have tried a few things but all the time seem to get this same error !
Go to Top of Page

masterao
Senior Member

Sweden
1678 Posts

Posted - 21 August 2002 :  17:42:16  Show Profile  Visit masterao's Homepage
Change from this :

if cInt(intTotalActiveUsers) > cInt(intAURecord then) 'We have a new record!!! :)

to this:

if cInt(intTotalActiveUsers) > cInt(intAURecord) then 'We have a new record!!! :)


Jan
===========
FR Portal Forums | Active Users 4.0.20 Mod
Go to Top of Page

Yellow Aftershock
New Member

55 Posts

Posted - 21 August 2002 :  17:52:41  Show Profile
Cheers dude !

That worked, but I get this error when I try and view the active_users.asp


Microsoft VBScript compilation error '800a0401'

Expected end of statement

/forum2/active_users.asp, line 651

response.write getCurrentIcon(strIconProfileLocked,fLang(strLangMOD_Ls3kAU_01460) & " " & rsAM("M_NAME") & strLangMOD_Ls3kAU_01470),"hspace=""0""") & "</a>" & VBNewLine
--------------------------------------------------------------------------------------------------------------------------------------------------^
Go to Top of Page

Yellow Aftershock
New Member

55 Posts

Posted - 21 August 2002 :  18:44:37  Show Profile
OK- so active_users.asp STILL wont show up !
But everything else works fine ! - But I still need help with the above error !

However the time stamp is showing twice as follows:

Active Users Record: 16 | Record Set On: 21 Aug 2002 23:27:37 at 23:27:37 ????

Also a moment ago the record was 51 on June 16th (as was before I re-installed)- why has this JUST changed ?
Go to Top of Page

Rasyr
Junior Member

USA
199 Posts

Posted - 21 August 2002 :  21:25:25  Show Profile
Have you applied all of the bug fixes? You can find them here:

http://forum.snitz.com/forum/topic.asp?TOPIC_ID=32993

**TANSTAAFL**
Go to Top of Page

masterao
Senior Member

Sweden
1678 Posts

Posted - 21 August 2002 :  22:34:55  Show Profile  Visit masterao's Homepage
quote:
Originally posted by Yellow Aftershock

Cheers dude !






quote:

That worked, but I get this error when I try and view the active_users.asp


Microsoft VBScript compilation error '800a0401'

Expected end of statement

/forum2/active_users.asp, line 651

response.write getCurrentIcon(strIconProfileLocked,fLang(strLangMOD_Ls3kAU_01460) & " " & rsAM("M_NAME") & strLangMOD_Ls3kAU_01470),"hspace=""0""") & "</a>" & VBNewLine
--------------------------------------------------------------------------------------------------------------------------------------------------^




See this topic

Jan
===========
FR Portal Forums | Active Users 4.0.20 Mod
Go to Top of Page

masterao
Senior Member

Sweden
1678 Posts

Posted - 21 August 2002 :  22:43:24  Show Profile  Visit masterao's Homepage
quote:
Originally posted by Yellow Aftershock

However the time stamp is showing twice as follows:

Active Users Record: 16 | Record Set On: 21 Aug 2002 23:27:37 at 23:27:37 ????



To fix this, change line 172 in inc_activeusers.asp from:


" " & fLang(strLangMOD_Ls3kAU_00070) & ": " & intAURecord & " | " & fLang(strLangMOD_Ls3kAU_00080) & ": " & ChkDate(strAURecordDate," ",true) & " " & fLang(strLangMOD_Ls3kAU_00090) & " " & ChkTime(strAURecordDate) & VBNewLine & _


to


" " & fLang(strLangMOD_Ls3kAU_00070) & ": " & intAURecord & " | " & fLang(strLangMOD_Ls3kAU_00080) & ": " & ChkDate(strAURecordDate," ",false) & " " & fLang(strLangMOD_Ls3kAU_00090) & " " & ChkTime(strAURecordDate) & VBNewLine & _


That will fix the double time bug.


Jan
===========
FR Portal Forums | Active Users 4.0.20 Mod
Go to Top of Page

Nathan
Help Moderator

USA
7664 Posts

Posted - 22 August 2002 :  00:57:46  Show Profile  Visit Nathan's Homepage
quote:
Originally posted by masterao



To fix this, change line 172 in inc_activeusers.asp from:


" " & fLang(strLangMOD_Ls3kAU_00070) & ": " & intAURecord & " | " & fLang(strLangMOD_Ls3kAU_00080) & ": " & ChkDate(strAURecordDate," ",true) & " " & fLang(strLangMOD_Ls3kAU_00090) & " " & ChkTime(strAURecordDate) & VBNewLine & _


to


" " & fLang(strLangMOD_Ls3kAU_00070) & ": " & intAURecord & " | " & fLang(strLangMOD_Ls3kAU_00080) & ": " & ChkDate(strAURecordDate," ",false) & " " & fLang(strLangMOD_Ls3kAU_00090) & " " & ChkTime(strAURecordDate) & VBNewLine & _


That will fix the double time bug.





No, change it to this

                   "            " & fLang(strLangMOD_Ls3kAU_00070) & ": " & intAURecord & " | " & fLang(strLangMOD_Ls3kAU_00080) & ": " & ChkDate(strAURecordDate," " & fLang(strLangMOD_Ls3kAU_00090) & " ",true) & VBNewLine & _

Nathan Bales
CoreBoard | Active Users Download
Go to Top of Page

Nathan
Help Moderator

USA
7664 Posts

Posted - 22 August 2002 :  02:44:20  Show Profile  Visit Nathan's Homepage
All bugs solved, closing.

Nathan Bales
CoreBoard | Active Users Download
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.4 seconds. Powered By: Snitz Forums 2000 Version 3.4.07