Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 DEV-Group
 DEV Discussions (General)
 </a> ???
 New Topic  Topic Locked
 Printer Friendly
Previous Page
Author Previous Topic Topic Next Topic
Page: of 2

-gary
Development Team Member

406 Posts

Posted - 23 September 2004 :  17:21:02  Show Profile
quote:
Originally posted by sr_erick

There are too many " in there.



Three would be needed to close the href of the anchor tag.

KawiForums.com


Go to Top of Page

sr_erick
Senior Member

USA
1318 Posts

Posted - 23 September 2004 :  17:27:47  Show Profile  Visit sr_erick's Homepage  Send sr_erick a Yahoo! Message
Yea I just saw that, I guess I wasn't thinking right. Must have just been a CSS bug then.




Erick
Snowmobile Fanatics

Go to Top of Page

Image
Average Member

Canada
574 Posts

Posted - 07 October 2004 :  15:17:34  Show Profile  Visit Image's Homepage  Send Image an ICQ Message
quote:
Originally posted by RichardKinser

quote:
Originally posted by Image

in Login.asp line 111 and 122
Delete size=""20""
		"                            <input type=""text"" name=""Name"" size=""20""  maxLength=""25"" tabindex=""1"" value="""" style=""width:150px;""></td>" & vbNewLine & _


===================
In pop_messengers.asp line 107 and 111
Change
size=""20""
With
style=""width:150px;""

===================
In pop_profile.asp line 891, 901
Delete size=""20""

line 770, 774
Delete size=""25""

===================
In pop_subscription.asp line 110 and 114
Change
size=""20""
With
style=""width:150px;""

===================

In setup.asp line 3673, 3677, 3691, 3695, 3699
Delete size=""25""

size=""25"" style=""width:150px;""

===================

size= was left in for browsers that don't support inline styles...



Ok, that mean in

admin_login

admin_login_short

pop_delete

pop_lock

pop_open

missing size=""20"" or not???

<input type=""text"" name=""Name"" style=""width:150px;"">

<input type=""Password"" name=""Password"" style=""width:150px;"">



==============================


in admin_config_Members.asp

Missing all </font> tag

Replace

			"                <a href=""JavaScript:openWindow3('pop_config_help.asp?mode=features#allownoncookies')"">" & getCurrentIcon(strIconSmileQuestion,"","") & "</a></td>" & vbNewLine & _

With
			"                <a href=""JavaScript:openWindow3('pop_config_help.asp?mode=features#allownoncookies')"">" & getCurrentIcon(strIconSmileQuestion,"","") & "</a></font> </td>" & vbNewLine & _




========================

In admin_config_namefilter (4)

Replace </font></a></p>

With </a></font></p>

==========================

in admin_config_colors (1)

Replace Back To Admin Home</font></a></p>

With Back To Admin Home</a></font></p>

===========================

in admin_accounts_pending (4)

Replace Back To Members Pending</font></a>

With Back To Members Pending</a></font>

===========================

in admin_config_badwords (4)

Replace Back To Badword Filter Configuration</font></a>

With Back To Badword Filter Configuration</a></font>

==============================

in admin_config_datetime (1)

Replace Back To Admin Home</font></a>

With Back To Admin Home</a></font>

==============================

in admin_config_email (1)

Replace Back To Admin Home</font></a>

With Back To Admin Home</a></font>

==============================

in admin_config_features (1)

Replace Back To Admin Home</font></a>

With Back To Admin Home</a></font>

==============================

in admin_config_members (1)

Replace Back To Admin Home</font></a>

With Back To Admin Home</a></font>

==============================

in admin_config_NT_features (1)

Replace Back To Admin Home</font></a>

With Back To Admin Home</a></font>

==============================

in admin_config_ranks (1)

replace Back To Admin Home</font></a>

With Back To Admin Home</a></font>

==============================

in admin_config_system (1)

Replace Back To Admin Home</font></a>

With Back To Admin Home</a></font>

==============================

in inc_header (3)

Replace </font></a>

With </a></font>

==============================

in password.asp (6)

Replace </font></a>

With </a></font>

==============================

in policy.asp (1)

Replace </font></a>

With </a></font>

==============================

Go to Top of Page

Image
Average Member

Canada
574 Posts

Posted - 08 October 2004 :  17:48:25  Show Profile  Visit Image's Homepage  Send Image an ICQ Message
Richard,
about this topic
http://forum.snitz.com/forum/topic.asp?TOPIC_ID=52267

when I click on expand/collapse on default page
I got this link
http://www.forums2001.ca/forum/default.asp?Snitz00HideCat1=N&CAT_ID=

this fix look like (made in japan)


Try this
===========
===========
in default.asp

Replace

if Request.QueryString("CAT_ID") <> "" and IsNumeric(Request.QueryString("CAT_ID")) = True then
	Cat_ID = cLng(Request.QueryString("CAT_ID"))
end if


With

if Request.QueryString("CAT_ID") <> "" and IsNumeric(Request.QueryString("CAT_ID")) = True then
	Cat_ID = cLng(Request.QueryString("CAT_ID"))
	HideModeN = "CAT_ID=" & Cat_ID & "&"
	HideModeY = "CAT_ID=" & Cat_ID & "&"
else
	HideModeN = ""
	HideModeY = ""
end if




Replace

<a href=""" & ScriptName & "?" & HideForumCat & "=N&CAT_ID=" & Cat_ID & """>

and
<a href=""" & ScriptName & "?" & HideForumCat & "=Y&CAT_ID=" & Cat_ID & """>


With

<a href=""" & ScriptName & "?" & HideModeN & HideForumCat & "=N"">

and
<a href=""" & ScriptName & "?" & HideModeY & HideForumCat & "=Y"">


===========
===========

For Active Users Mod

In inc_activeusers.asp

Replace
<a href=""" & ScriptName & "?HideActiveUsers=N"">

and
<a href=""" & ScriptName & "?HideActiveUsers=Y"">

With
<a href=""" & ScriptName & "?" & HideModeN & "HideActiveUsers=N"">

and
<a href=""" & ScriptName & "?" & HideModeY & "HideActiveUsers=Y"">


Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 14 October 2004 :  18:12:16  Show Profile
quote:
Originally posted by Image

Bug in Database or setup.asp
From v3.4.04 and v3.4.05 mayby less

Active Link Decoration: strActiveTextDecoration

in Database FORUM_CONFIG_NEW
there is no STRACTIVETEXTDECORATION in C_VARIABLE

Here fresh install from v3.4.05 today
Database: http://www.forums2001.ca/image_v3.zip

Fast Update:
[DELETE]
CONFIG_NEW
C_VARIABLE = 'STRACTIVETEXTDECORATION'
[END]
[INSERT]
CONFIG_NEW
(C_VARIABLE,C_VALUE)#('STRACTIVETEXTDECORATION','underline')
[END]



This has been corrected in the downloadable .zip file. There is no need to add the field via the MOD Setup, all you have to do is goto the font/color screen and change 1 item and then submit it. If the field isn't there, it will be created automatically.

This thread has become really confusing.
Go to Top of Page

Image
Average Member

Canada
574 Posts

Posted - 14 October 2004 :  18:49:58  Show Profile  Visit Image's Homepage  Send Image an ICQ Message
you are right, sorry


quote:
This thread has become really confusing.


remove it
my other list of error will be edity on my forum


Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 14 October 2004 :  20:40:28  Show Profile
quote:
Originally posted by Image

you are right, sorry


quote:
This thread has become really confusing.


remove it
my other list of error will be edity on my forum

Sorry if you took that the wrong way. I was just making a comment, didn't mean anything by it.
Go to Top of Page

Image
Average Member

Canada
574 Posts

Posted - 20 October 2004 :  15:08:31  Show Profile  Visit Image's Homepage  Send Image an ICQ Message
Ok

In Moderate.asp line 320 missing </font> tag
						"                <td height=""20"" colspan=""6"" bgcolor=""" & strCategoryCellColor & """ valign=""middle""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strCategoryFontColor & """><a href=""default.asp?CAT_ID=" & Forum_Cat_ID & """><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strCategoryFontColor & """><b>" & ChkString(Cat_Name,"display") & "</b></font></a> / <a href=""forum.asp?FORUM_ID=" & Forum_ID & """><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strCategoryFontColor & """><b>" & ChkString(Forum_Subject,"display") & "</b></font></a></font></td>" & vbNewline


Maybe in admin_config_system.asp line 142
2000-2002 Snitz Communications
for
2000-04 Snitz Communications
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.17 seconds. Powered By: Snitz Forums 2000 Version 3.4.07