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
 Access Archiving Error w/ Anonymous Posting MOD
 New Topic  Topic Locked
 Printer Friendly
Next Page
Author Previous Topic Topic Next Topic
Page: of 2

richfed
Average Member

United States
999 Posts

Posted - 08 December 2004 :  05:44:37  Show Profile  Visit richfed's Homepage
I just archived posts over 1 year old in one forum on a secondary message board I have that still uses Access for it's database ... Snitz version 3.4.03 ... [first time ever archiving on that board]

When clicking on the Archived Posts icon for that forum, you see this: http://www.mohicanpress.com/messageboard2/forum.asp?ARCHIVE=true&FORUM_ID=8

Error message is:

quote:
ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.

/messageboard2/inc_func_common.asp, line 237



You can see that the table is incomplete. That is the first page of archives.

On the 2nd & 3rd pages, you see this error message:

quote:
Anonymous Poster
ADODB.Field error '800a0bcd'

Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.

/messageboard2/inc_func_common.asp, line 222



It appears that whenever an Anonymous Poster is involved, an error message arises. So, this post may need to be moved to the MOD forum. [Anonymous Posting Mod is installed]

Here is a link to my current inc_func_common file: http://www.mohicanpress.com/battles/inc_func_common.txt

I'd like to be able to either fix OR retrieve the archive ...

Thanks for any assistance ...

Rich
[size=1]A Complete Idiot's Guide to MOD Implementation || On the Trail of the Last of the Mohicans[/size=1]

Edited by - richfed on 12 December 2004 05:43:44

richfed
Average Member

United States
999 Posts

Posted - 10 December 2004 :  05:06:53  Show Profile  Visit richfed's Homepage
Let me ask this question in another way. First of all, what does "Either BOF or EOF is True ..." mean? How is the situation normally corrected?

I'm thinking that maybe a database record needs to be changed? I can access my database via Table Editor ...
Go to Top of Page

HuwR
Forum Admin

United Kingdom
20584 Posts

Posted - 10 December 2004 :  05:08:06  Show Profile  Visit HuwR's Homepage
it means it didn't find any records in your table
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 11 December 2004 :  08:41:20  Show Profile  Visit richfed's Homepage
That is strange, because the data is there.

What can I do?
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 14 December 2004 :  05:56:36  Show Profile  Visit richfed's Homepage
Any helpers on this? Not sure what to do ... all data is present, but as soon as an anonymous poster has a post, the table is lost from there on out. I tried the unarchive MOD, but I ended up with multiple posts ... I've cleaned up the first page ...

Guidance appreciated!
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 16 December 2004 :  06:30:19  Show Profile  Visit richfed's Homepage
Help --

I need somebody --

Help --

Not just anybody --

Help --

You know I need someone --

HELP!!!!

Rich
[size=1]A Complete Idiot's Guide to MOD Implementation || On the Trail of the Last of the Mohicans[/size=1]
Go to Top of Page

MarcelG
Retired Support Moderator

Netherlands
2625 Posts

Posted - 16 December 2004 :  08:19:13  Show Profile  Visit MarcelG's Homepage
Is this with Davio's anonymous mod, or with Doramoon's ?

portfolio - linkshrinker - oxle - twitter
Go to Top of Page

MarcelG
Retired Support Moderator

Netherlands
2625 Posts

Posted - 16 December 2004 :  08:42:15  Show Profile  Visit MarcelG's Homepage
Fixed thanks to mr Maven (my new collegue who knows how to read ASP...)

In in post_info.asp you've pasted this code:
	'Insert reply info as new topic into Topic table
	strSql = "INSERT INTO "  & strTablePrefix & "TOPICS (FORUM_ID"
	strSql = strSql & ", CAT_ID"
	strSql = strSql & ", T_SUBJECT"
	strSql = strSql & ", T_MESSAGE"
	strSql = strSql & ", T_AUTHOR"
	strSql = strSql & ", T_LAST_POST"
	strSql = strSql & ", T_LAST_POST_AUTHOR"
	strSql = strSql & ", T_LAST_POST_REPLY_ID"
	strSql = strSql & ", T_DATE"
	strSql = strSql & ", T_STATUS"
	strSql = strSql & ", T_IP"
	strSql = strSql & ", T_STICKY"
	strSql = strSql & ", T_SIG"
	strSql = strSql & ", T_ARCHIVE_FLAG"
	strSql = strSql & ", T_REPLIES"
	strSql = strSql & ", T_UREPLIES"
	strSql = strSql & ") VALUES ("
	strSql = strSql & NewForumID
	strSql = strSql & ", " & NewCatID
	strSql = strSql & ", '" & txtSubject & "'"
	strSql = strSql & ", '" & ChkString(Reply_Message, "message") & "'"
	strSql = strSql & ", " & Reply_Author
	strSql = strSql & ", '" & Reply_Date & "'"
	strSql = strSql & ", " & Reply_Author
	strSql = strSql & ", 0"
	strSql = strSql & ", '" & Reply_Date & "'"
	strSql = strSql & ", 1"
	strSql = strSql & ", '" & Reply_IP & "'"
	strSql = strSql & ", 0"
	strSql = strSql & ", " & Reply_Sig
	strSql = strSql & ", 1"
	strSql = strSql & ", 0"
	strSql = strSql & ", 0)"

Change the GREEN line, and remove the ChkString part.
We were checking the already checked string for the 2nd time...thus removing all formatting.
So, the new code looks like this:
	'Insert reply info as new topic into Topic table
	strSql = "INSERT INTO "  & strTablePrefix & "TOPICS (FORUM_ID"
	strSql = strSql & ", CAT_ID"
	strSql = strSql & ", T_SUBJECT"
	strSql = strSql & ", T_MESSAGE"
	strSql = strSql & ", T_AUTHOR"
	strSql = strSql & ", T_LAST_POST"
	strSql = strSql & ", T_LAST_POST_AUTHOR"
	strSql = strSql & ", T_LAST_POST_REPLY_ID"
	strSql = strSql & ", T_DATE"
	strSql = strSql & ", T_STATUS"
	strSql = strSql & ", T_IP"
	strSql = strSql & ", T_STICKY"
	strSql = strSql & ", T_SIG"
	strSql = strSql & ", T_ARCHIVE_FLAG"
	strSql = strSql & ", T_REPLIES"
	strSql = strSql & ", T_UREPLIES"
	strSql = strSql & ") VALUES ("
	strSql = strSql & NewForumID
	strSql = strSql & ", " & NewCatID
	strSql = strSql & ", '" & txtSubject & "'"
	strSql = strSql & ", '" & Reply_Message & "'"
	strSql = strSql & ", " & Reply_Author
	strSql = strSql & ", '" & Reply_Date & "'"
	strSql = strSql & ", " & Reply_Author
	strSql = strSql & ", 0"
	strSql = strSql & ", '" & Reply_Date & "'"
	strSql = strSql & ", 1"
	strSql = strSql & ", '" & Reply_IP & "'"
	strSql = strSql & ", 0"
	strSql = strSql & ", " & Reply_Sig
	strSql = strSql & ", 1"
	strSql = strSql & ", 0"
	strSql = strSql & ", 0)"

Woeps...posted this reply in the wrong topic...was about the Split topic mod where OneWayMule posted the exact same solution 3 minutes earlier...

portfolio - linkshrinker - oxle - twitter

Edited by - MarcelG on 16 December 2004 08:47:38
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 16 December 2004 :  19:46:12  Show Profile  Visit richfed's Homepage
This is DoraMoon's version.
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 01 January 2005 :  08:15:27  Show Profile  Visit richfed's Homepage
Still stuck on this ... tried to contact DoraMoon, but her listed E-mail address is no longer valid.

If anyone could help me with this, I sure would appreciate it!

Rich
[size=1]A Complete Idiot's Guide to MOD Implementation || On the Trail of the Last of the Mohicans[/size=1]
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 14 January 2005 :  19:20:44  Show Profile  Visit richfed's Homepage
Well, I continue to struggle with this ...

Finally decided the heck with it & went with the "delete all archived posts in a forum" option in the administration area. Unfortunately, this deleted ALL the posts in the forum ... whether archived or not. I had backed up, so I'm back to square one ...
Go to Top of Page

dcronin
Starting Member

5 Posts

Posted - 21 January 2005 :  00:31:51  Show Profile  Visit dcronin's Homepage
Where did you find the Anonymous Posting MOD? I have been looking for a mod like this and can't seem to find it.

Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 21 January 2005 :  06:28:27  Show Profile  Visit richfed's Homepage
Try: http://www.snitzbitz.com/mods/details.asp?Version=All&mid=93

Rich
[size=1]A Complete Idiot's Guide to MOD Implementation || On the Trail of the Last of the Mohicans[/size=1]
Go to Top of Page

dcronin
Starting Member

5 Posts

Posted - 23 January 2005 :  23:06:00  Show Profile  Visit dcronin's Homepage
Thanks richfed,

Do you have a link to Davio's version as well?

Much appreciated.
Go to Top of Page

dcronin
Starting Member

5 Posts

Posted - 24 January 2005 :  01:20:20  Show Profile  Visit dcronin's Homepage
quote:
Originally posted by richfed

Try: http://www.snitzbitz.com/mods/details.asp?Version=All&mid=93



Thanks.
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 24 February 2005 :  05:11:02  Show Profile  Visit richfed's Homepage
Still stuck here ...

Anyone ... ?
Go to Top of Page
Page: of 2 Previous Topic Topic Next Topic  
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.4 seconds. Powered By: Snitz Forums 2000 Version 3.4.07