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
 Another question about mods
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

CalloftheHauntedMaster
Junior Member

289 Posts

Posted - 08 June 2005 :  09:42:10  Show Profile
http://forum.snitz.com/forum/topic.asp?TOPIC_ID=4919

^What does he mean by "linking it" to your admin page?

This account was hacked into by Image, a very honest guy as you all can see! Stealing people's passwords is his pasttime. Beware of this, before you register at his forums!

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 08 June 2005 :  09:57:22  Show Profile  Send ruirib a Yahoo! Message
It means to create a link from your admin_home.asp page to that asp page that he provided the link for.


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

CalloftheHauntedMaster
Junior Member

289 Posts

Posted - 08 June 2005 :  10:21:35  Show Profile
Being the mod-n00b that I am, I don't quite understand what that means.

How exactly would I do that?

Btw, please check out my other question.

This account was hacked into by Image, a very honest guy as you all can see! Stealing people's passwords is his pasttime. Beware of this, before you register at his forums!
Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 08 June 2005 :  10:26:52  Show Profile  Send ruirib a Yahoo! Message
Just check how one of the existing links is done, then copy and paste, and change what needs to be changed.
In admin_home.asp, the code for the links to other pages (left pane only) starts around line# 125 and ends about line# 139:

		"                <UL>" & vbNewLine & _
		"                <LI><span class=""spnMessageText""><a href=""admin_config_system.asp"">Main Forum Configuration</a></span></LI>" & vbNewLine & _
		"                <LI><span class=""spnMessageText""><a href=""admin_config_features.asp"">Feature Configuration</a></span></LI>" & vbNewLine
if strAuthType = "nt" then
	Response.Write	"                <LI><span class=""spnMessageText""><a href=""admin_config_NT_features.asp"">Feature NT Configuration</a></span></LI>" & vbNewLine
end if
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 & _
		"                </UL></p>" & vbNewLine & _

Right pane follows :

     <UL>" & vbNewLine
if strEmailVal = "1" then Response.Write("                <LI><span class=""spnMessageText""><a href=""admin_accounts_pending.asp"">Members Pending</a></span> <font size=""" & strFooterFontSize & """>(" & User_Count & ")</font></LI>" & vbNewLine)
Response.Write	"                <LI><span class=""spnMessageText""><a href=""admin_moderators.asp"">Moderator Setup</a></span></LI>" & vbNewLine & _
		"                <LI><span class=""spnMessageText""><a href=""admin_emaillist.asp"">E-mail List</a></span></LI>" & vbNewLine & _
		"                <LI><span class=""spnMessageText""><a href=""admin_info.asp"">Server Information</a></span></LI>" & vbNewLine & _
		"                <LI><span class=""spnMessageText""><a href=""admin_variable_info.asp"">Forum Variables Information</a></span></LI>" & vbNewLine & _
		"                <LI><span class=""spnMessageText""><a href=""admin_count.asp"">Update Forum Counts</a></span></LI>" & vbNewLine
if strArchiveState = "1" then Response.Write("                <LI><span class=""spnMessageText""><a href=""admin_forums.asp"">Archive Forum Topics</a></span></LI>" & vbNewLine)
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 & _


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

CalloftheHauntedMaster
Junior Member

289 Posts

Posted - 08 June 2005 :  11:07:13  Show Profile
Ok, so, just to be sure I'm fully aware of what I have to do, I'll ask you for a step-by-step guide. Let me know if I make any mistakes here.

1. First, I save the mod to my hardrive in a folder of my choice.

2. Then, where do I extract it to? Do I extract it to another folder on my hardrive, do I copy and paste that one file to my forum folder? Or, do I select "Upload using WS_FTP Upload Wizard"?

3. Now, assuming I copy it to my forum folder, do I need to make a new folder in my forum's server specifically for this mod or do I just copy and paste it in my server's hardrive without mattering where it gets pasted?

4. Now what do I do? I understand what it means to link now, but what link will I use and where will I find it?

5. And one last thing, do I copy and paste it in my forum's server directly or do I do so in my forum's bbs.zip file where all the information is available for editing?

Sorry for so many questions, but I just want to be sure I'm doing this right my first time.

This account was hacked into by Image, a very honest guy as you all can see! Stealing people's passwords is his pasttime. Beware of this, before you register at his forums!
Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 08 June 2005 :  11:16:19  Show Profile  Send ruirib a Yahoo! Message
Read this: http://forum.snitz.com/forum/topic.asp?TOPIC_ID=50885


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

CalloftheHauntedMaster
Junior Member

289 Posts

Posted - 08 June 2005 :  11:40:10  Show Profile
I read it all, but some of it is Greek to me.

I just want someone to sort of guide me through my first time with a simple mod. Norwegianking used a complex one with lots of possibilities and stuff, but I just want one where I can see the basics.

Plus, that still doesn't explain what link I should add to my admin page...

This account was hacked into by Image, a very honest guy as you all can see! Stealing people's passwords is his pasttime. Beware of this, before you register at his forums!
Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 08 June 2005 :  12:45:57  Show Profile  Send ruirib a Yahoo! Message
If you want my opinion, sorry if this looks blunt, you'd better not do it if you have these many doubts on such simple tasks.


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

CalloftheHauntedMaster
Junior Member

289 Posts

Posted - 08 June 2005 :  12:50:46  Show Profile
lol, they're not doubts, I just like being sure. First time is always a challenge.

One more thing, the mod will work for 3.4.03 versions, right?

This account was hacked into by Image, a very honest guy as you all can see! Stealing people's passwords is his pasttime. Beware of this, before you register at his forums!
Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 08 June 2005 :  12:58:52  Show Profile  Send ruirib a Yahoo! Message
That mod is very old. Don't know whether it works with 3.4.x. Likely the version that existed when it was posted was 3.1.x.


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

Shaggy
Support Moderator

Ireland
6780 Posts

Posted - 08 June 2005 :  13:01:11  Show Profile
This is the latest version that I'm aware of.


Search is your friend
“I was having a mildly paranoid day, mostly due to the
fact that the mad priest lady from over the river had
taken to nailing weasels to my front door again.”
Go to Top of Page

CalloftheHauntedMaster
Junior Member

289 Posts

Posted - 08 June 2005 :  13:33:49  Show Profile
Ok, I've almost completely got the hang of this. I just want to verify one little thing.

For the mod Shaggy gave, there are three ASP files. Once I extract them, do I need to upload any of them to my forum's server? The reason I ask is because admin_count.asp and admin_home.asp appear to already have the modified code in them just as an example. Would this mean that the only actual asp file I upload to my server is admin_etc?

The other two are there to show me what the code is supposed to look like and where to actually change it, correct?

And lastly, will this mod work for 3.4.03?

Basically, will any mod that works for 3.3.03 work for later Snitz versions?

This account was hacked into by Image, a very honest guy as you all can see! Stealing people's passwords is his pasttime. Beware of this, before you register at his forums!

Edited by - CalloftheHauntedMaster on 08 June 2005 14:44:56
Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 08 June 2005 :  16:26:45  Show Profile  Send ruirib a Yahoo! Message
That mod is for 3.3.x. There were major changes from 3.3.x to 3.4.x, so the mod's instructions are surely outdated.

A mod is added by changing code in the forum files. That means that mods for older versions usually cannot be used, directly, with newer versions, since most files change from major version to major version of the forum software. Don't know this exact mod, but you should maybe start a new thread specifically asking whether the mod is suitable for 3.4.x. Maybe someone might have installed it and will be able to offer some guidance.


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

CalloftheHauntedMaster
Junior Member

289 Posts

Posted - 08 June 2005 :  16:40:17  Show Profile
Wow, I have to tell you. I was nervous as heck, but I did it!

I installed the mod on School of Duel V 3.4.03 and it went perfectly! No problems at all and it works like a charm!

Thanks for all your help guys!

This account was hacked into by Image, a very honest guy as you all can see! Stealing people's passwords is his pasttime. Beware of this, before you register at his forums!
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.38 seconds. Powered By: Snitz Forums 2000 Version 3.4.07