Author |
Topic |
|
Marcello Fiori
Starting Member
Italy
5 Posts |
Posted - 02 September 2003 : 19:17:11
|
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 |
|
Marcello Fiori
Starting Member
Italy
5 Posts |
Posted - 03 September 2003 : 07:06:46
|
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 |
|
|
OneWayMule
Dev. Team Member & Support Moderator
Austria
4969 Posts |
|
Marcello Fiori
Starting Member
Italy
5 Posts |
Posted - 03 September 2003 : 08:10:42
|
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. |
|
|
Marcello Fiori
Starting Member
Italy
5 Posts |
Posted - 05 September 2003 : 13:20:35
|
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 |
|
|
|
Topic |
|
|
|