Author |
Topic |
|
Yellow Aftershock
New Member
55 Posts |
Posted - 21 August 2002 : 17:21:29
|
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
|
Can anyone help ? I have tried a few things but all the time seem to get this same error ! |
|
|
masterao
Senior Member
Sweden
1678 Posts |
Posted - 21 August 2002 : 17:42:16
|
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 |
|
|
Yellow Aftershock
New Member
55 Posts |
Posted - 21 August 2002 : 17:52:41
|
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 --------------------------------------------------------------------------------------------------------------------------------------------------^
|
|
|
Yellow Aftershock
New Member
55 Posts |
Posted - 21 August 2002 : 18:44:37
|
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 ? |
|
|
Rasyr
Junior Member
USA
199 Posts |
|
masterao
Senior Member
Sweden
1678 Posts |
Posted - 21 August 2002 : 22:34:55
|
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 |
|
|
masterao
Senior Member
Sweden
1678 Posts |
Posted - 21 August 2002 : 22:43:24
|
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 |
|
|
Nathan
Help Moderator
USA
7664 Posts |
Posted - 22 August 2002 : 00:57:46
|
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 |
|
|
Nathan
Help Moderator
USA
7664 Posts |
|
|
Topic |
|