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 MOD-Group
 MOD Add-On Forum (W/Code)
 admin_home.asp MOD section divider
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

pknaz
Junior Member

USA
117 Posts

Posted - 25 October 2002 :  03:46:45  Show Profile  Visit pknaz's Homepage  Send pknaz an AOL message  Send pknaz an ICQ Message  Send pknaz a Yahoo! Message
Hi all. I got tired of looking at all the MOD links right below the rest of the admin option links. All i did to remidy the situation was to
add some code:
quote:


'############# MOD Section Divider ########################
Response.Write 		"                </UL></p>" & vbNewLine & _
		"                </font>" & vbNewLine & _
		"                <font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strForumFontColor & """>" & vbNewLine & _
		"                <p><b>MOD Configuration Options:</b>" & vbNewLine & _
		"                <UL>" & vbNewLine
'##########################################################



right below this code in admin_home.asp:
quote:


Response.Write	"                <LI><span class=""spnMessageText""><a href=""admin_config_members.asp"">Member Details Configuration</a></span></LI>" & vbNewLine & _
		"                <LI><span class=""spnMessageText""><a href=""admin_config_ranks.asp"">Ranking Configuration</a></span></LI>" & vbNewLine & _
		"                <LI><span class=""spnMessageText""><a href=""admin_config_datetime.asp"">Server Date/Time Configuration</a></span></LI>" & vbNewLine & _
		"                <LI><span class=""spnMessageText""><a href=""admin_config_email.asp"">Email Server Configuration</a></span></LI>" & vbNewLine & _
		"                <LI><span class=""spnMessageText""><a href=""admin_config_colors.asp"">Font/Table Color Code Configuration</a></span></LI>" & vbNewLine & _
		"                <LI><span class=""spnMessageText""><a href=""javascript:openWindow3('admin_config_badwords.asp')"">Bad Word Filter Configuration</a></span></LI>" & vbNewLine & _
		"                <LI><span class=""spnMessageText""><a href=""javascript:openWindow3('admin_config_namefilter.asp')"">UserName Filter Configuration</a></span></LI>" & vbNewLine & _
		"                <LI><span class=""spnMessageText""><a href=""javascript:openWindow3('admin_config_order.asp')"">Category/Forum Order Configuration</a></span></LI>" & vbNewLine 




Hope its useful to someone.

Edited by - pknaz on 25 October 2002 03:49:21

mortioli
Average Member

United Kingdom
898 Posts

Posted - 26 October 2002 :  04:21:03  Show Profile  Visit mortioli's Homepage  Send mortioli an AOL message  Send mortioli a Yahoo! Message
I use this way (gives you four squares instead of the two)...

Find this code:


		"                <LI><span class=""spnMessageText""><a href=""setup.asp"">Check Installation</a></span><font size=""" & strFooterFontSize & """><b> (Run after each upgrade !)</b></font></LI>" & vbNewLine & _
		"                </UL></p>" & vbNewLine & _
		"                </font></td>" & vbNewLine & _
		"              </tr>" & vbNewLine



And replace with:


		"                <LI><span class=""spnMessageText""><a href=""setup.asp"">Check Installation</a></span><font size=""" & strFooterFontSize & """><b> (Run after each upgrade !)</b></font></LI>" & vbNewLine & _
		"                </UL></p>" & vbNewLine & _
		"                </font></td>" & vbNewLine & _
		"              </tr>" & vbNewLine & _

		"              <tr>" & vbNewLine & _
		"                <td bgcolor=""" & strForumCellColor & """ valign=""top""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strForumFontColor & """>" & vbNewLine & _
		"                <p><b>MOD Links:</b>" & vbNewLine & _
		"                <UL>" & vbNewLine & _
		"                <LI><span class=""spnMessageText""><a href=""#"">Example</a></span></LI>" & vbNewLine & _
		"                </UL></p>" & vbNewLine & _
		"                </font></td>" & vbNewLine & _
		"                <td bgcolor=""" & strForumCellColor & """ valign=""top""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strForumFontColor & """>" & vbNewLine & _
		"                <p><b>Other Links:</b>" & vbNewLine & _
		"                <UL>" & vbNewLine & _
		"                <LI><span class=""spnMessageText""><a href=""#"">Example</a></span></LI>" & vbNewLine & _
		"                </UL></p>" & vbNewLine & _
		"				 </font></td>" & vbNewLine & _
		"              </tr>" & vbNewLine
Go to Top of Page

user_99
Starting Member

Austria
10 Posts

Posted - 28 October 2002 :  09:36:25  Show Profile
@mortiolie

good idea!
works great!

thx
Go to Top of Page

ZeroAvengerX
Starting Member

USA
48 Posts

Posted - 03 November 2002 :  07:11:35  Show Profile  Visit ZeroAvengerX's Homepage  Send ZeroAvengerX an AOL message  Send ZeroAvengerX a Yahoo! Message
i did my own nicer looking setup, then came here and found out that i used the same title that PKNAZ used! there rally isnt much else you can call it but yeah anyways here is how to install my Admin Table



1st you need to copy all your links for MODS and put them in a blank text editor (ex:notepad)
2nd you need to leave your original snitz tables in tact (if needed unzip a new copy of your amin_home.asp and get the links straight)
then find this coding around line 150 i think
quote:
Response.Write " <LI><span class=""spnMessageText""><a href=""admin_config_groupcats.asp"">Group Categories Configuration</a></span></LI>" & vbNewLine & _
" <LI><span class=""spnMessageText""><a href=""admin_mod_dbsetup.asp"">MOD Setup</a></span><font size=""" & strFooterFontSize & """> (<span class=""spnMessageText""><a href=""admin_mod_dbsetup2.asp"">Alternative MOD Setup</a></span>)</font></LI>" & vbNewLine & _
" <LI><span class=""spnMessageText""><a href=""setup.asp"">Check Installation</a></span><font size=""" & strFooterFontSize & """><b> (Run after each upgrade !)</b></font></LI>" & vbNewLine & _
" </UL></p>" & vbNewLine & _
" </font></td>" & vbNewLine & _
" </tr>" & vbNewLine

directly under it place this
quote:
<!--MODS-->



Response.Write " <tr>" & vbNewLine & _
" <td colspan=""2"" bgcolor=""" & strForumCellColor & """ valign=""top""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strForumFontColor & """>" & vbNewLine & _
" <p><b>MOD Configuration Options:</b>" & vbNewLine & _
" <UL>" & vbNewLine
Response.Write " <LI><span class=""spnMessageText""><a href=""admin_etc.asp"">Admin Tools</a></span></LI>" & vbNewLine & _
" <LI><span class=""spnMessageText""><a href=""admin_config_activeusers.asp"">" & fLang(strLangMOD_Ls3kAU_05000) & "</a></span></LI>" & vbNewLine & _
" <LI><span class=""spnMessageText""><a href=""admin_ipgate.asp"">IPGate</a></span></LI>" & vbNewLine & _
" <LI><span class=""spnMessageText""><a href=""admin_poll.asp"">Poll Configuration</a></span></LI>" & vbNewLine & _
" <LI><span class=""spnMessageText""><a href=""admin_pmmaint.asp"">Private Message Maintenance</a></span></LI>" & vbNewLine & _
" </UL></p>" & vbNewLine & _
" </font></td>" & vbNewLine & _
" </tr>" & vbNewLine



<!--/MODS-->

NOTE: The LI tags above are the mods i use on my forum, you will want to put your LI's there, making sure the 1st one starts with "Response.Write"


that should be all... if there are problems e-mail ZeroAvengerX@Hotmail.com but i dont expect any because on a scale of (1 = EASY - 10 = HARD) this is a 0.5, its a quick copy paste job, and its very organized and sticks out when you wanna get back to it


(about 5 minutes after posting i realized this is almost exactly like mortioli's also accept it takes up the whole bottom block rather than half)

Edited by - ZeroAvengerX on 03 November 2002 07:15:03
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.2 seconds. Powered By: Snitz Forums 2000 Version 3.4.07