Author |
Topic |
|
Fabionetwork
Starting Member
Italy
5 Posts |
Posted - 26 January 2003 : 04:08:12
|
I've a snitz forum v. 3.4.03 with these MODs:
Avatar Mod for 3.4 (works fine) Admin Level Mod (some problems during the installations but now ok) Japaro Flash Games (works fine) Active users 4.0 (ok)
The forum was running fine, but now i've installed the PM mod, it works but when i read a topic which contains posts made after the installations of the PM mod, i receive this ASP error:
--------------------------------------- Type mismatch: '[string: ""]' /forum/inc_func_common.asp, line 763 ---------------------------------------
This happens when i set the date to UK MED, but if I turn the date from the UK MED to another (like US short) the post appears wih the others, but with this error:
All the posts made after the installation results like this... I read an "8" in the body of the post, an "1" instead of "Forum Admin", and 3 posts instead my 14 posts....
I've noticed another thing. I've usually the nick "Fabionetwork", and before the installation of the PM even if i log wiht "FaBiOnEtWoRk" the forum says that i'm "Fabionetwork", but now i log on with the same capitals letters that I write in the login. Why? Is it connected with my problem?
I'm sorry but this forum is on my pc, but I can give more details...
Thanks to all!!!! |
Fabionetwork |
Edited by - Fabionetwork on 26 January 2003 04:13:20 |
|
Hamlin
Advanced Member
United Kingdom
2386 Posts |
Posted - 26 January 2003 : 08:12:02
|
Can you post a link to a text version of your topic.asp? |
|
|
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
Posted - 26 January 2003 : 08:17:04
|
I had this prob but when i added AVATARS. Maybe you should load up the backup files and then try again. As Hamlin said, post a TXT file of topic.asp. |
De Priofundus Calmo Ad Te Damine |
|
|
Fabionetwork
Starting Member
Italy
5 Posts |
|
Hamlin
Advanced Member
United Kingdom
2386 Posts |
Posted - 26 January 2003 : 09:10:22
|
This looks like the problem...
rM_YAHOO = 5
rM_PM = 6
rM_TITLE = 6
rMEMBER_ID = 7
You have two number 6's. Make rM_TITLE 7 and add 1 to all the numbers that follow it, that should fix it. |
|
|
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
Posted - 26 January 2003 : 09:14:58
|
quote: Originally posted by Hamlin
This looks like the problem...
rM_YAHOO = 5
rM_PM = 6
rM_TITLE = 6
rMEMBER_ID = 7
You have two number 6's. Make rM_TITLE 7 and add 1 to all the numbers that follow it, that should fix it.
rM_NAME = 0
rM_RECEIVE_EMAIL = 1
rM_AIM = 2
rM_ICQ = 3
rM_MSN = 4
rM_YAHOO = 5
rM_PM = 6
rM_TITLE = 6
rMEMBER_ID = 7
rM_HOMEPAGE = 8
rM_LEVEL = 9
rM_POSTS = 10
rM_COUNTRY = 11
rM_Avatar = 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
Replace that with:
rM_NAME = 0
rM_RECEIVE_EMAIL = 1
rM_AIM = 2
rM_ICQ = 3
rM_MSN = 4
rM_YAHOO = 5
rM_PM = 6
rM_TITLE = 7
rMEMBER_ID = 8
rM_HOMEPAGE = 9
rM_LEVEL = 10
rM_POSTS = 11
rM_COUNTRY = 12
rM_Avatar = 13
rREPLY_ID = 14
rFORUM_ID = 15
rR_AUTHOR = 16
rTOPIC_ID = 17
rR_MESSAGE = 18
rR_LAST_EDIT = 19
rR_LAST_EDITBY = 20
rR_SIG = 21
rR_STATUS = 22
rR_DATE = 23
if CanShowSignature = 1 then
rM_SIG = 24
end if
|
De Priofundus Calmo Ad Te Damine |
|
|
Fabionetwork
Starting Member
Italy
5 Posts |
Posted - 26 January 2003 : 10:42:15
|
Oh! It's true!!! Thank u very much!! |
Fabionetwork |
Edited by - Fabionetwork on 26 January 2003 10:45:14 |
|
|
Hamlin
Advanced Member
United Kingdom
2386 Posts |
Posted - 26 January 2003 : 12:29:56
|
Your welcome |
|
|
|
Topic |
|