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
 Missing signature block - only when in members.asp
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

stwilson
Junior Member

USA
385 Posts

Posted - 18 January 2003 :  02:51:26  Show Profile  Visit stwilson's Homepage
Weird thing I am seeing. When I go into my profile via the profile link (pop_profile.asp?mode=goEdit) my profile looks fine. When I go in via the members.asp page and click on the member name and then click the member name again to modify (pop_profile.asp?mode=goModify) my signature text is missing. The signaute text is in the database but you cannot see it when in this specific mode.

Here is a link to a text version of my pop_profile.asp page: http://ridingarizona.com/forum/pop_profile.txt

Any thoughts on what the fix is?

Shannon

Shannon
RidingArizona.com

OneWayMule
Dev. Team Member & Support Moderator

Austria
4969 Posts

Posted - 18 January 2003 :  06:20:23  Show Profile  Visit OneWayMule's Homepage  Send OneWayMule an ICQ Message
could you post the link to your site?

My MODs:
Birthdays - Custom Policy - F.A.Q. Administration - Forum Rules - Guestbook
Links Manager - MyOwnGoogle - Profile Views - Search Log - WebSearch

Useful stuff:
Forum and MOD Installation - MOD Installation Guide - Snitz v3.4.05 Readme - Free ASP Hosts - Support Snitz
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 18 January 2003 :  08:46:12  Show Profile
post a link to text version of inc_profile as well.

Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~
Go to Top of Page

stwilson
Junior Member

USA
385 Posts

Posted - 18 January 2003 :  09:02:57  Show Profile  Visit stwilson's Homepage
Sure. The site http://ridingarizona.com/forum

Link to in_profile is: http://ridingarizona.com/forum/inc_profile.txt

Thank you both for your replies.

Shannon

Shannon
RidingArizona.com
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 18 January 2003 :  09:17:56  Show Profile
Not sure if this is all that is need but on line 446 you have:


    if strMode = "Register" then
      strTxtSig = ""
    end if


And it should be

		if strMode <> "Register" then
			strTxtSig = rs("M_SIG")
		end if

instead

Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~
Go to Top of Page

stwilson
Junior Member

USA
385 Posts

Posted - 24 January 2003 :  01:29:06  Show Profile  Visit stwilson's Homepage
Nikkol,

Thank you for your reply. However, that did not fix it. Still the same problem, only you cannot see the signature text while in either mode. Any other ideas?

Shannon

Shannon
RidingArizona.com
Go to Top of Page

stwilson
Junior Member

USA
385 Posts

Posted - 24 January 2003 :  01:52:01  Show Profile  Visit stwilson's Homepage
The other thing I forgot is if you submit the form it does blank out the signature field.

Shannon

Shannon
RidingArizona.com
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 24 January 2003 :  02:04:25  Show Profile
Are you using SQL Server? If so, I think I know what the problem is.

(moving this to the Help: MOD Implementation forum since this file has been modified)
Go to Top of Page

stwilson
Junior Member

USA
385 Posts

Posted - 24 January 2003 :  02:10:57  Show Profile  Visit stwilson's Homepage
Yes, I am using SQL. Thank you for any direction you can give.

Shannon

Shannon
RidingArizona.com
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 24 January 2003 :  02:35:40  Show Profile
in your pop_profile.asp file on line #863 find the following:

    strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_HOBBIES"
    strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_LNEWS"
    strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_QUOTE"
    strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_BIO"
    strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_SIG"
    strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_AUHIDE"
    strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_AVATAR"
    strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_AVATAR_WIDTH"
    strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_AVATAR_HEIGHT"
and change it to look like this:
    strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_AUHIDE"
    strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_AVATAR"
    strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_AVATAR_WIDTH"
    strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_AVATAR_HEIGHT"
    strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_HOBBIES"
    strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_LNEWS"
    strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_QUOTE"
    strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_BIO"
    strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_SIG"


then on line #1002 find the following:
        strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_HOBBIES"
        strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_LNEWS"
        strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_QUOTE"
        strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_BIO"
        strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_SIG"
        strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_AUHIDE"
        strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_AVATAR"
        strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_AVATAR_WIDTH"
        strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_AVATAR_HEIGHT"
and change it to this:
        strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_AUHIDE"
        strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_AVATAR"
        strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_AVATAR_WIDTH"
        strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_AVATAR_HEIGHT"
        strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_HOBBIES"
        strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_LNEWS"
        strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_QUOTE"
        strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_BIO"
        strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_SIG"
Go to Top of Page

stwilson
Junior Member

USA
385 Posts

Posted - 25 January 2003 :  11:10:04  Show Profile  Visit stwilson's Homepage
Richard,

Thank you for your reply but that still did not fix it. Here is a link to my new pop_profile.asp:

http://ridingarizona.com/forum/pop_profile.txt

When I go into my profile via the profile link (pop_profile.asp?mode=goEdit) my signature text is visible. However, when I go in via the members.asp page and click on the member name and then click the member name again to modify (pop_profile.asp?mode=goModify) my signature text is missing.

Any other ideas?

Shannon

Shannon
RidingArizona.com
Go to Top of Page

stwilson
Junior Member

USA
385 Posts

Posted - 30 January 2003 :  21:20:48  Show Profile  Visit stwilson's Homepage
Anyone else have any ideas how I can fix this?

Shannon

Shannon
RidingArizona.com
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 30 January 2003 :  21:28:41  Show Profile
have you tried using an unmodified version of the file?

That's what I suggest doing. Start with a fresh copy of the file and then reapply the modifications to it, one at a time. That should help you figure out exactly what is causing it.
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.5 seconds. Powered By: Snitz Forums 2000 Version 3.4.07