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
 Help with Slash mod
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

simonduz
Junior Member

161 Posts

Posted - 29 April 2001 :  01:37:36  Show Profile  Visit simonduz's Homepage  Send simonduz an ICQ Message  Send simonduz a Yahoo! Message
The install went fine then used an include on my main page within a cell and get this error:
quote:
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.
/mods/slash.asp, line 73


I have seen others post the same error but no one has mentioned what was done to fix it.
thanks
simonduz

e3stone
Average Member

USA
885 Posts

Posted - 29 April 2001 :  01:59:14  Show Profile  Send e3stone an AOL message
Could you give us a link to a text version of your slash.asp file? and the page which has the slash include on it.

<-- Eric -->


http://insidewaco.com/forum

Edited by - e3stone on 29 April 2001 02:03:55
Go to Top of Page

simonduz
Junior Member

161 Posts

Posted - 29 April 2001 :  09:17:23  Show Profile  Visit simonduz's Homepage  Send simonduz an ICQ Message  Send simonduz a Yahoo! Message
Thanks for the reply.
http://easyromantic.121host.net/downloads/resources.txt

and

http://easyromantic.121host.net/downloads/slash.txt

Let me know what you find.
Thanks
simonduz
Go to Top of Page

e3stone
Average Member

USA
885 Posts

Posted - 29 April 2001 :  10:07:36  Show Profile  Send e3stone an AOL message
Is your slash include currently in the code running on your site? I can't see it

<-- Eric -->


http://insidewaco.com/forum
Go to Top of Page

e3stone
Average Member

USA
885 Posts

Posted - 29 April 2001 :  10:25:30  Show Profile  Send e3stone an AOL message
Make a .asp file with only these lines in it:

<!--#INCLUDE FILE="config.asp" -->
<!--#INCLUDE FILE="inc_functions.asp" -->
<!--#INCLUDE FILE="inc_top.asp" -->
<!--#include file="mods/slash.asp"-->
<!--#INCLUDE FILE="inc_footer.asp" -->

That will determine if your slash mod is setup right and functions correctly by itself. We'll narrow it down that way, first. If it shows up correctly, then there's a conflict with some other include file that you have on your resources page.

You could go through all the includes (just the ones that you have added - mods) and make sure all the recordsets are closed at the bottom of them. i.e. <% rsObj.close %> <% set rsObj = nothing %>

One note, Include files are the first thing processes on a page. So, even if you have the in an "If..Then" statement, every include on your page is processed by the server. I didn't know that until a few months ago when I was trying to do a conditional statement with includes.

Try that .asp file I wrote above and we'll work from there

<-- Eric -->


http://insidewaco.com/forum

Edited by - e3stone on 29 April 2001 10:35:24
Go to Top of Page

simonduz
Junior Member

161 Posts

Posted - 29 April 2001 :  11:29:41  Show Profile  Visit simonduz's Homepage  Send simonduz an ICQ Message  Send simonduz a Yahoo! Message
quote:
Is your slash include currently in the code running on your site? I can't see it

No, I have 2 local test areas for different layouts both on Win2k with IIS. I try not to throw it out on an external server until it has been tested.
I did as you said and created a test1.asp file with the includes. Same error. Login works, links work from inc_top.asp. So what does this rule out?
Thanks,
simonduz
Go to Top of Page

e3stone
Average Member

USA
885 Posts

Posted - 29 April 2001 :  11:50:34  Show Profile  Send e3stone an AOL message
Well, since you got an error on that test1.asp page that means that there is probably something wrong with the way you set up the slash mod. You ran the mod_dbsetup.asp to create all the tables in your database? then went to slash_admin.asp and configured the mod?

Edit: I put those 5 lines on a page on my server and it worked.

<-- Eric -->


http://insidewaco.com/forum

Edited by - e3stone on 29 April 2001 11:52:03
Go to Top of Page

e3stone
Average Member

USA
885 Posts

Posted - 29 April 2001 :  12:01:03  Show Profile  Send e3stone an AOL message
I duplicated the error
quote:
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



You don't have anything in your Forum_Mods table. Meaning that you probably haven't run the slash_admin.asp file....I'm guessing....

<-- Eric -->


http://insidewaco.com/forum
Go to Top of Page

simonduz
Junior Member

161 Posts

Posted - 29 April 2001 :  14:36:43  Show Profile  Visit simonduz's Homepage  Send simonduz an ICQ Message  Send simonduz a Yahoo! Message
Well I did run slash_admin.asp but what I thought curious was that it did not prompt me to add any database tables, only the configuration was available which always says 'SLASH MOD WAS UPDATED.' mod_dbsetup.asp has no listing for the slash mod. So this sounds pretty easy, just manually add the content to the database (like slash_admin.asp states), but then again from looking it already has FORUM_Mods with M_NAME, M_CODE, M_VALUE. What is it missing (so confused)?
How did you duplicate the error?
thanks
simonduz
FYI: just uploaded the files to the external server and get the same results.

Edited by - simonduz on 29 April 2001 14:48:06
Go to Top of Page

e3stone
Average Member

USA
885 Posts

Posted - 29 April 2001 :  15:26:59  Show Profile  Send e3stone an AOL message
This is what my FORUM_MODS table has in it:

quote:
M_NAME M_CODE M_VALUE
slash slPosts 3
slash slLength 150
slash slSort 1
slash slImages 0
slash slEncode 1


To duplicate the error, I erased those values from the database.

<-- Eric -->


http://insidewaco.com/forum
Go to Top of Page

simonduz
Junior Member

161 Posts

Posted - 29 April 2001 :  20:51:07  Show Profile  Visit simonduz's Homepage  Send simonduz an ICQ Message  Send simonduz a Yahoo! Message
Back in now from a nice sunny afternoon out.
Just wanted to report that I manually added the entries in the DB and it worked.
Well I just learned something else to check now.
Thanks for taking the time e3stone.
simonduz

http://easyromantic.121host.net -[test site]-
yada, yada.
Go to Top of Page

DarlingBri
Junior Member

United Kingdom
378 Posts

Posted - 09 May 2001 :  17:57:16  Show Profile  Visit DarlingBri's Homepage
Like simonduz, I have no Slash files in mod_dbsetup. I'm going to be utterly terrified if I have to open the database and do this by hand.

Does anyone know why there's nothing about Slash in there?

--Bri :o(

*****
"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 :  19:19:41  Show Profile  Visit animedj's Homepage  Send animedj an ICQ Message
Well DarlingBri, it might be because there isn't a dbs file for the Slasdh Mod until now... well I create a dbs file now an you can d/l here:

http://animedj.com/hacks/slash.dbs

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

DarlingBri
Junior Member

United Kingdom
378 Posts

Posted - 09 May 2001 :  20:20:06  Show Profile  Visit DarlingBri's Homepage
Thank you, that worked brilliantly!

I was just confused by the mod commader mention when there was no dbs file.

*****
"Bother," said Pooh, as Piglet was assimilated by the Borg.
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.5 seconds. Powered By: Snitz Forums 2000 Version 3.4.07