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
 Avatar not in replies
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

Muse
Starting Member

27 Posts

Posted - 03 May 2005 :  13:00:58  Show Profile  Visit Muse's Homepage
I've searched for a solution to this problem, and read through the suggestions in this thread: http://forum.snitz.com/forum/topic.asp?TOPIC_ID=57982, however avatars are still only showing up in the first post in a topic, not in any replies. The URL to the avatar displays in the space where the avatar should be, which distorts the size of the reply.

I'm using Snitz 3.4.05 with a MySql DB, and have the following mods implemented: Active User, Private Message, Avatar, Smile Manager Plus.

I've gone over the topic.asp file several times, because I'm pretty sure that's where the problem is, but I just can't find it.

Here's a .txt version of topic.asp, if anyone would care to take a look at the code and see if they could find an error, I would be extremely appreciative.

http://www.oblivionjunkie.com/topic.txt

(Edited out the username and password since the problem has been resolved. Thank you again!)

Thank you so much for your help!

Edited by - Muse on 03 May 2005 17:17:46

modifichicci
Average Member

Italy
787 Posts

Posted - 03 May 2005 :  14:14:13  Show Profile  Visit modifichicci's Homepage
http://forum.snitz.com/forum/topic.asp?TOPIC_ID=57982

Ernia e Laparocele
Forum di Ernia e Laparocele
Acces - MySql Migration Tutorial
Adamantine forum
Go to Top of Page

Muse
Starting Member

27 Posts

Posted - 03 May 2005 :  14:40:19  Show Profile  Visit Muse's Homepage
That's the topic that I listed in my initial post above, saying that I had read all through it, but couldn't find a solution that worked. Thanks though.

Edited by - Muse on 03 May 2005 14:41:38
Go to Top of Page

Hamlin
Advanced Member

United Kingdom
2386 Posts

Posted - 03 May 2005 :  15:32:22  Show Profile
Try swapping these values.
rM_AVATAR = 12
rM_COUNTRY = 13
to
rM_COUNTRY = 12
rM_AVATAR = 13
Your countries are showing as noavatar.gif, and someones avatar is showing as <img src="Canada" width="96" height="96" border="1">. so it looks like they are the wrong way round.
Go to Top of Page

modifichicci
Average Member

Italy
787 Posts

Posted - 03 May 2005 :  16:41:56  Show Profile  Visit modifichicci's Homepage
This sequence
Reply_MemberName = arrReplyData(rM_NAME, iForum)
			Reply_MemberReceiveEmail = arrReplyData(rM_RECEIVE_EMAIL, iForum)
			Reply_MemberAIM = arrReplyData(rM_AIM, iForum)
			Reply_MemberICQ = arrReplyData(rM_ICQ, iForum)
			Reply_MemberMSN = arrReplyData(rM_MSN, iForum)
			Reply_MemberYAHOO = arrReplyData(rM_YAHOO, iForum)
		        Reply_MemberPM = arrReplyData(rM_PM, iForum)
			Reply_MemberTitle = arrReplyData(rM_TITLE, iForum)
			Reply_MemberID = arrReplyData(rMEMBER_ID, iForum)
			Reply_MemberHomepage = arrReplyData(rM_HOMEPAGE, iForum)
			Reply_MemberLevel = arrReplyData(rM_LEVEL, iForum)
			Reply_MemberAvatar = arrReplyData(rM_AVATAR, iForum)
			Reply_MemberPosts = arrReplyData(rM_POSTS, iForum)
			Reply_MemberCountry = arrReplyData(rM_COUNTRY, iForum)
			Reply_ReplyID = arrReplyData(rREPLY_ID, iForum)
			Reply_ForumID = arrReplyData(rFORUM_ID, iForum)
			Reply_Author = arrReplyData(rR_AUTHOR, iForum)
			Reply_TopicID = arrReplyData(rTOPIC_ID, iForum)
			Reply_Content = arrReplyData(rR_MESSAGE, iForum)
			Reply_LastEdit = arrReplyData(rR_LAST_EDIT, iForum)
			Reply_LastEditBy = arrReplyData(rR_LAST_EDITBY, iForum)
			Reply_Sig = arrReplyData(rR_SIG, iForum)
			Reply_Status = arrReplyData(rR_STATUS, iForum)
			Reply_Date = arrReplyData(rR_DATE, iForum)


has to be the same as

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_AVATAR = 12
		rM_COUNTRY = 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


so change the position of the fields

Ernia e Laparocele
Forum di Ernia e Laparocele
Acces - MySql Migration Tutorial
Adamantine forum
Go to Top of Page

Muse
Starting Member

27 Posts

Posted - 03 May 2005 :  16:59:54  Show Profile  Visit Muse's Homepage
Thank you both SO MUCH!!!!
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.35 seconds. Powered By: Snitz Forums 2000 Version 3.4.07