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)
 Slash MOD ver 2.00
 New Topic  Topic Locked
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 12

DarlingBri
Junior Member

United Kingdom
378 Posts

Posted - 09 May 2001 :  09:28:59  Show Profile  Visit DarlingBri's Homepage
Warchild, you have a problem with the paths; where did you install the mod? What directory?

I have a question, though. If I want the mod to pull posts from only one forum, say News, is that possible? Or do I have to install a seperate Snitz and reference it in the mod?

*****
"Bother," said Pooh, as Piglet was assimilated by the Borg.
Go to Top of Page

animedj
Junior Member

USA
190 Posts

Posted - 09 May 2001 :  11:01:02  Show Profile  Visit animedj's Homepage  Send animedj an ICQ Message
ahh.. My apologies once again to all.. been away studying java an all.. that i couldn't dedicate time to maintain mods or for that counts even my site.. Probably another version must be required a new simple one.. but for the moment..

Warchild.. for what i see.. have you tried this in slash_admin:

<!--INCLUDE FILE="../config.asp" -->

this should work IF the slash admin page is in a MODS directory inside your forum directory..

Dan 787.. thanks for your step trough tutorial.. would you mind if maybe I update the readme files with your steps?? I'm really lousy writting doucmentation..

DarlingBri .. yes you can.. that's basically the function of strCustomSQL.. what you need to do is this..

Replace this line:

strCustomSQL = ""

for this:

strCustomSQL = "and " & strTablePrefix & "FORUM.FORUM_ID=[id or number of your news forum] "

well that's pretty much now that..

---
Johann Reyes
http://animedj.com
Go to Top of Page

Warchild
Starting Member

USA
46 Posts

Posted - 09 May 2001 :  16:46:47  Show Profile  Visit Warchild's Homepage  Send Warchild an ICQ Message
Well as usual the brill cure didn't work

Yes all the files are in the mods dir

yes I have it set as <!--INCLUDE FILE="../config.asp" -->

yes I used Mod Cmdr

yes I am using access...

No it's not working

Microsoft OLE DB Provider for ODBC Drivers error '80004005'

[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified

/forum/mods/slash_admin.asp, line 53



Lines 48-whatever

Dim slMessage, slImages
strCookieURL = Left(Request.ServerVariables("Path_Info"), InstrRev(Request.ServerVariables("Path_Info"), "/mods/"))

action = request.querystring("action")
set my_Conn = Server.CreateObject("ADODB.Connection")
my_Conn.Open strConnString

www.bitterreign.com "Dedicated to darkness"
Go to Top of Page

animedj
Junior Member

USA
190 Posts

Posted - 09 May 2001 :  19:04:04  Show Profile  Visit animedj's Homepage  Send animedj an ICQ Message
Well.. part my mistake.. it isn't:

<!--INCLUDE FILE="../config.asp" -->

it is :

<!--#INCLUDE FILE="../config.asp" -->

---
Johann Reyes
http://animedj.com
Go to Top of Page

wroxbox
Starting Member

Finland
8 Posts

Posted - 20 May 2001 :  20:13:27  Show Profile  Visit wroxbox's Homepage  Send wroxbox an ICQ Message
Hey!

Thanks for the excelent MOD! Few questions to make it working in my site.

1) to use slash.asp (MOD) outside the forum/default.asp page seems NOT to work.

I have tried to install it on my default homepage (in my root directory) ...

and the default page had this line in it:
<!--#include file="forum/mods/slash.asp"-->

and had also those includes in top of it:
inc_config.asp
inc_functions.asp

but there is still errors and for some reasons try to access
/setup.asp?RC=1&CC=1&strDBType=access&EC=-2147467259

... WHY?

myLinks add-on for frontpage works correctly!


--
God moves in mysterious ways -Noel Richards
Go to Top of Page

animedj
Junior Member

USA
190 Posts

Posted - 20 May 2001 :  22:59:21  Show Profile  Visit animedj's Homepage  Send animedj an ICQ Message
hmm.. inc_config.asp or config.asp?? Also you might want to take a look to the new alpha version that I'm releasing.. it's pretty stable until know..

---
Johann Reyes
http://animedj.com

Edited by - animedj on 20 May 2001 23:09:28
Go to Top of Page

wroxbox
Starting Member

Finland
8 Posts

Posted - 23 May 2001 :  01:24:24  Show Profile  Visit wroxbox's Homepage  Send wroxbox an ICQ Message
IS THERE something wronw with this SQL? It's from slashMOD 3 alpha...

I am using access2000

SELECT TOP 5
FORUM_TOPICS.TOPIC_ID,
FORUM_TOPICS.T_SUBJECT,
FORUM_TOPICS.T_AUTHOR,
FORUM_MEMBERS.M_NAME,
FORUM_TOPICS.T_REPLIES,
FORUM_TOPICS.T_DATE,
FORUM_TOPICS.T_MESSAGE
FROM
FORUM_TOPICS,
FORUM_FORUM,
FORUM_MEMBERS
WHERE
FORUM.F_PRIVATEFORUMS = 0 AND
FORUM_TOPICS.FORUM_ID = FORUM_FORUM.FORUM_ID AND
FORUM_TOPICS.T_AUTHOR = FORUM_MEMBERS.MEMBER_ID

ORDER BY TOPICS.T_LAST_POST DESC

thanks for help

--
God moves in mysterious ways -Noel Richards

Edited by - wroxbox on 23 May 2001 01:25:20
Go to Top of Page

animedj
Junior Member

USA
190 Posts

Posted - 23 May 2001 :  02:08:30  Show Profile  Visit animedj's Homepage  Send animedj an ICQ Message
wroxbox--

well i don't see anyting wrong with the sql.. there is something wrong with it??

---
Johann Reyes
http://animedj.com
Go to Top of Page

wroxbox
Starting Member

Finland
8 Posts

Posted - 23 May 2001 :  03:00:12  Show Profile  Visit wroxbox's Homepage  Send wroxbox an ICQ Message
Yes. Nothing seems to work... DOES Access2000 like "SELECT TOP 5"??? or should it be in other "words"?

--
God moves in mysterious ways -Noel Richards
Go to Top of Page

wroxbox
Starting Member

Finland
8 Posts

Posted - 23 May 2001 :  18:23:45  Show Profile  Visit wroxbox's Homepage  Send wroxbox an ICQ Message
quote:

hmm.. inc_config.asp or config.asp??


<!--#INCLUDE FILE="config.asp" -->
<!--#INCLUDE FILE="inc_functions.asp" -->

But still I get this error....

Microsoft JET Database Engine error '80040e14'

The SELECT statement includes a reserved word or an argument name that is misspelled or missing, or the punctuation is incorrect.

/forum/mods/slash.asp, line 73


--
God moves in mysterious ways -Noel Richards
Go to Top of Page

animedj
Junior Member

USA
190 Posts

Posted - 23 May 2001 :  18:58:35  Show Profile  Visit animedj's Homepage  Send animedj an ICQ Message
just a moment.. which version are you using?? 2.10 or 3.0 alpha??

---
Johann Reyes
http://animedj.com
Go to Top of Page

wroxbox
Starting Member

Finland
8 Posts

Posted - 24 May 2001 :  01:39:29  Show Profile  Visit wroxbox's Homepage  Send wroxbox an ICQ Message
quote:

just a moment.. which version are you using?? 2.10 or 3.0 alpha??



I've tried both, but in the moment I am trying to configurate 2.10 ... thanks

And the "db" is access2000 but for sure I will change it for those real databases soon...like SQL server 2000 etc.

does slash workk better with it?

BTW. I will be back 05/27/2001 next time... so until then. THX

--
God moves in mysterious ways -Noel Richards
Go to Top of Page

Azaniah
Senior Member

United Kingdom
1004 Posts

Posted - 24 May 2001 :  10:16:15  Show Profile  Visit Azaniah's Homepage
I like it

The only thing I would say is that the setup is confusing. If you already have a MODS table then the admin_setup.asp will just default to update, but will have no records to update. For those that are not overly confident about setting up Database tables that might be a help.

Thanks Az



-------
Eagles fly!, but weasels don't get sucked into jet engines.
Go to Top of Page

animedj
Junior Member

USA
190 Posts

Posted - 24 May 2001 :  10:57:05  Show Profile  Visit animedj's Homepage  Send animedj an ICQ Message
well.. for version 3.0 .. I'm trying to make setup a little more simplier as for that I'm using the DB_SETUP to create the values of the database..

---
Johann Reyes
http://animedj.com
Go to Top of Page

Azaniah
Senior Member

United Kingdom
1004 Posts

Posted - 24 May 2001 :  11:01:12  Show Profile  Visit Azaniah's Homepage
Yeah that's what I was going to suggest..

Nice mod tho thanks a bundle..

Az



-------
Eagles fly!, but weasels don't get sucked into jet engines.
Go to Top of Page
Page: of 12 Previous Topic Topic Next Topic  
Previous Page | Next 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.18 seconds. Powered By: Snitz Forums 2000 Version 3.4.07