Author |
Topic |
|
pahasapa
Starting Member
38 Posts |
Posted - 12 September 2002 : 04:36:07
|
My code forum is 3.4.0.2 DB is an upgrade from 3.1 SR4 Private Messages Mod is 3.4.02
In the second post of all Topics I have this error:
Microsoft VBScript runtime error '800a000d'
Type mismatch: '[string: ""]'
/3402/inc_func_common.asp, line 634
thanks
|
alex |
|
pahasapa
Starting Member
38 Posts |
Posted - 13 September 2002 : 03:29:02
|
up |
alex |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 13 September 2002 : 04:46:37
|
What do you have as line 634? I have this:
chkDate = Monthname(Mid(fDate,5,2),0) & " " & _
This code should work. have you installed any other MODs? And what do you mean by the second post of all topics?
@tomic |
SportsBettingAcumen.com |
|
|
pahasapa
Starting Member
38 Posts |
Posted - 13 September 2002 : 05:56:55
|
My line 630
chkDate = Mid(fDate,1,4) & " " & _
|
alex |
|
|
pahasapa
Starting Member
38 Posts |
|
crash
Advanced Member
Netherlands
2064 Posts |
Posted - 13 September 2002 : 06:28:09
|
what's on lines 625-635 of inc_func_common.asp? |
cHosting.nl |
|
|
pahasapa
Starting Member
38 Posts |
Posted - 13 September 2002 : 06:37:22
|
625-635 case "ymmd" chkDate = Mid(fDate,1,4) & " " & _ Monthname(Mid(fDate,5,2),1) & " " & _ Mid(fDate,7,2) case "ydmm" chkDate = Mid(fDate,1,4) & " " & _ Mid(fDate,7,2) & " " & _ Monthname(Mid(fDate,5,2),1) case "dmmmy" chkDate = Mid(fDate,7,2) & " " & _ Monthname(Mid(fDate,5,2),0) & " " & _
|
|
|
DoraMoon
Average Member
Taiwan
661 Posts |
Posted - 13 September 2002 : 07:24:17
|
hi~ pahasapa
on your forum, i found the error seem start from show Rank/Star in reply authors, so i think maybe post a .txt link to your topic.asp will be helpful, or post about line.579~line.604 in topic.asp.. from if strShowRank = 1 or strShowRank = 3 then to ' DEM --> End of Code added for moderation. |
|
|
pahasapa
Starting Member
38 Posts |
|
DoraMoon
Average Member
Taiwan
661 Posts |
Posted - 13 September 2002 : 07:43:37
|
and if this problem just cause from PM Mod installed.. maybe you should check these lines again.. rM_YAHOO = 5 rM_PM = 6 rM_TITLE = 7 rMEMBER_ID = 8 rM_HOMEPAGE = 9 and this "order" must according to the Sql statement about line.310 |
|
|
DoraMoon
Average Member
Taiwan
661 Posts |
Posted - 13 September 2002 : 07:50:14
|
ok, just as my guess... line.518 ~ line.537 in your topic.asp
rM_PM = 6
rM_TITLE = 6
rMEMBER_ID = 7
rM_HOMEPAGE = 8
rM_LEVEL = 9
rM_POSTS = 10
rM_COUNTRY = 11
rREPLY_ID = 12
rFORUM_ID = 13
rR_AUTHOR = 14
rTOPIC_ID = 15
rR_MESSAGE = 16
rR_LAST_EDIT = 17
rR_LAST_EDITBY = 18
rR_SIG = 19
rR_STATUS = 20
rR_DATE = 21
if CanShowSignature = 1 then
rM_SIG = 22
end if change it to
rM_PM = 6
rM_TITLE = 7
rMEMBER_ID = 8
rM_HOMEPAGE = 9
rM_LEVEL = 10
rM_POSTS = 11
rM_COUNTRY = 12
rREPLY_ID = 13
rFORUM_ID = 14
rR_AUTHOR = 15
rTOPIC_ID = 16
rR_MESSAGE = 17
rR_LAST_EDIT = 18
rR_LAST_EDITBY = 19
rR_SIG = 20
rR_STATUS = 21
rR_DATE = 22
if CanShowSignature = 1 then
rM_SIG = 23
end if
|
|
|
pahasapa
Starting Member
38 Posts |
Posted - 13 September 2002 : 08:45:46
|
Work great
thanks
|
alex |
|
|
|
Topic |
|