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
 Hello!
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

Marcello Fiori
Starting Member

Italy
5 Posts

Posted - 02 September 2003 :  19:17:11  Show Profile  Visit Marcello Fiori's Homepage
Hi Everybody,

my name is Marcello and I'm Italian. First of all, I got to state that I don't know zip about ASP coding... that's the base of my problems, I think.
I'm tryin' to add 3 plug-ins to my Snitz Forum, but I cannot make anyone of 'em work right.

The first is the FAQ Administration one; as I read here, I copied and pasted the code right into che "alternative" page... the Forum as accepted the code, but when I click on the "FAQ Admin" link I created on the "admin page", I got this message in return:

Active Server Pages error 'ASP 0126'

Include file not found

/forum_italiano/faq.asp, line 40

The include file 'inc_functions.asp' was not found.

What's Wrong?

Second one is the "Improved Moderators Administration version 1.1" add on: I can't understand where I've to paste the code given with the file: the row stated in the .txt it's not the same I see in my forum code.

Third: "Member Topic Administration Version 1.0": what I've to do with the asp file I've unzipped?

I apologize for the lenght of my post, and hope somebody could help me out of this.

Sincerely, Marcello.

OneWayMule
Dev. Team Member & Support Moderator

Austria
4969 Posts

Posted - 02 September 2003 :  20:21:04  Show Profile  Visit OneWayMule's Homepage  Send OneWayMule an ICQ Message
quote:
The first is the FAQ Administration one; as I read here, I copied and pasted the code right into che "alternative" page... the Forum as accepted the code, but when I click on the "FAQ Admin" link I created on the "admin page", I got this message in return:

Looks like you use the F.A.Q. Administration MOD for an older Snitz version (v3.3), there's inc_functions.asp file used by v3.4.
You can get the latest version of this MOD here.
quote:
the row stated in the .txt it's not the same I see in my forum code.

Do a search for the code you should look for with your text editor.
quote:
Third: "Member Topic Administration Version 1.0": what I've to do with the asp file I've unzipped?

Where did you download this MOD? It's not available for the latest Snitz version AFAIK.

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

Marcello Fiori
Starting Member

Italy
5 Posts

Posted - 03 September 2003 :  07:06:46  Show Profile  Visit Marcello Fiori's Homepage
quote:
Originally posted by OneWayMule


Looks like you use the F.A.Q. Administration MOD for an older Snitz version (v3.3), there's inc_functions.asp file used by v3.4.
You can get the latest version of this MOD here.



I've checked out the version right now, and it's the 3.4.03; I'll cast an eye on the link, thanks

quote:

Do a search for the code you should look for with your text editor.



Ok, I'll do as you say.

quote:

Where did you download this MOD? It's not available for the latest Snitz version AFAIK.



I download it here: http://forum.snitz.com/archive/default.asp?catid=15&cattitle=Mods and Add-On s

Thanks for the answers, Marcello.

Edited by - Marcello Fiori on 03 September 2003 07:13:14
Go to Top of Page

OneWayMule
Dev. Team Member & Support Moderator

Austria
4969 Posts

Posted - 03 September 2003 :  07:15:47  Show Profile  Visit OneWayMule's Homepage  Send OneWayMule an ICQ Message
quote:
I download it here: http://forum.snitz.com/archive/default.asp?catid=15&cattitle=Mods and Add-On s

This MOD is for Snitz v3.1SR4. It hasn't been updated for the latest version yet, so it won't work with your forum.

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

Marcello Fiori
Starting Member

Italy
5 Posts

Posted - 03 September 2003 :  08:10:42  Show Profile  Visit Marcello Fiori's Homepage
quote:
Originally posted by OneWayMule


This MOD is for Snitz v3.1SR4. It hasn't been updated for the latest version yet, so it won't work with your forum.



Ups.
Ok, one down, two to go.

Thanks, Marcello.
Go to Top of Page

Marcello Fiori
Starting Member

Italy
5 Posts

Posted - 05 September 2003 :  13:20:35  Show Profile  Visit Marcello Fiori's Homepage
Hello all,

so, tha FAQ Admin mod it's ok, thanks to OneWayMule.

For the "Moderators Administration version 1.1", I've found the code that it's said in the readme file, but there's a problem.

The code that I've to search in the "default.asp" page it's like this:

if rsForum("F_STATUS") = 1 then
Response.Write " <a href=""JavaScript:openWindow('pop_lock.asp?mode=Forum&FORUM_ID=" & rsForum("FORUM_ID") & "&CAT_ID=" & rsForum("CAT_ID") & "&Forum_Title=" & chkString(rsForum("F_SUBJECT"),"JSurlpath") & "')""><img src=""icon_lock.gif"" alt=""Lock Forum"" border=""0"" hspace=""0""></a>" & vbNewline
else
Response.Write " <a href=""JavaScript:openWindow('pop_open.asp?mode=Forum&FORUM_ID=" & rsForum("FORUM_ID") & "&CAT_ID=" & rsForum("CAT_ID") & "&Forum_Title=" & chkString(rsForum("F_SUBJECT"),"JSurlpath") & "')""><img src=""icon_unlock.gif"" alt=""Un-Lock Forum"" border=""0"" hspace=""0""></a>" & vbNewline
end if


The one in my page it's written like this:

if ForumStatus = 1 then
Response.Write " <a href=""JavaScript:openWindow('pop_lock.asp?mode=Forum&FORUM_ID=" & ForumID & "&CAT_ID=" & ForumCatID & "')"">" & getCurrentIcon(strIconLock,"Blocca Forum","hspace=""0""") & "</a>"
else
Response.Write " <a href=""JavaScript:openWindow('pop_open.asp?mode=Forum&FORUM_ID=" & ForumID & "&CAT_ID=" & ForumCatID & "')"">" & getCurrentIcon(strIconUnlock,"Sblocca Forum","hspace=""0""") & "</a>"
end if


For what I can understand, the code typing is different... any suggestion?

Edited by - Marcello Fiori on 05 September 2003 13:21:21
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