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 set up
 New Topic  Topic Locked
 Printer Friendly
Previous Page
Author Previous Topic Topic Next Topic
Page: of 2

cripto9t
Average Member

USA
881 Posts

Posted - 06 February 2006 :  08:26:35  Show Profile
Heres one problem - line 1227
			if strPicture = "1" then
				strsql = strsql & ",	M_PHOTO_URL = '" & ChkString(Trim(regPhoto_URL),"SQLString") & "'"
			end if strsql = strsql & ",	M_AVATAR_URL = '" & ChkString(regAvatar_Image,"SQLString") & "'"

should look like this
			if strPicture = "1" then
				strsql = strsql & ",	M_PHOTO_URL = '" & ChkString(Trim(regPhoto_URL),"SQLString") & "'"
			end if 
                        strsql = strsql & ",	M_AVATAR_URL = '" & ChkString(regAvatar_Image,"SQLString") & "'"

another - around line 1464
					if Trim(Request.Form("PHOTO_URL")) <> "" and lcase(trim(Request.Form("PHOTO_URL"))) <> "http://" and Trim(lcase(Request.Form("PHOTO_URL"))) <> "https://" then
						regPhoto_URL = chkString(Request.Form("Photo_URL"),"SQLString")
					else
						regPhoto_URL = " "
					end if regAvatar_Image = Request.Form("AVATAR_URL")

should look like this
					if Trim(Request.Form("PHOTO_URL")) <> "" and lcase(trim(Request.Form("PHOTO_URL"))) <> "http://" and Trim(lcase(Request.Form("PHOTO_URL"))) <> "https://" then
						regPhoto_URL = chkString(Request.Form("Photo_URL"),"SQLString")
					else
						regPhoto_URL = " "
					end if 
                                        regAvatar_Image = Request.Form("AVATAR_URL")

last one :) - around line 1530
					if strPicture = "1" then
						strsql = strsql & ", M_PHOTO_URL = '" & chkString(Trim(regPhoto_URL),"SQLString") & "'"  
					end if strsql = strsql & ",	M_AVATAR_URL = '" & ChkString(Trim(regAvatar_Image),"SQLString") & "'"

should look like this
					if strPicture = "1" then
						strsql = strsql & ", M_PHOTO_URL = '" & chkString(Trim(regPhoto_URL),"SQLString") & "'"  
					end if 
                                        strsql = strsql & ",	M_AVATAR_URL = '" & ChkString(Trim(regAvatar_Image),"SQLString") & "'"


The readme says "after" maybe it should be "under"

    _-/Cripto9t\-_

Edited by - cripto9t on 06 February 2006 08:28:17
Go to Top of Page
Page: of 2 Previous Topic Topic Next Topic  
Previous Page
 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.2 seconds. Powered By: Snitz Forums 2000 Version 3.4.07