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)
 MOD: New Events Calendar for 3.4.03 beta
 New Topic  Reply to Topic
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 32

Bookie
Average Member

USA
856 Posts

Posted - 03 October 2002 :  19:13:38  Show Profile  Visit Bookie's Homepage  Send Bookie an AOL message  Send Bookie a Yahoo! Message  Reply with Quote
If I hit the arrow for the next week, I get...

Microsoft VBScript runtime error '800a01a8'

Object required: 'rs'

/forum/cal.asp, line 332

By the way, both of these errors occur on Monday, the second day listed.<

Participate in my nonsense
Go to Top of Page

red1
Junior Member

355 Posts

Posted - 03 October 2002 :  19:46:26  Show Profile  Reply with Quote
Bookie can you pls try changing line 327 to

rs.filter = ""
<

My Mods:
New Events Calendar
New Non-database Active Users
Go to Top of Page

Bookie
Average Member

USA
856 Posts

Posted - 03 October 2002 :  19:56:09  Show Profile  Visit Bookie's Homepage  Send Bookie an AOL message  Send Bookie a Yahoo! Message  Reply with Quote
quote:
Originally posted by red1

Bookie can you pls try changing line 327 to

rs.filter = ""




The result is this...

Microsoft VBScript runtime error '800a01a8'

Object required: 'rs'

/forum/cal.asp, line 332

Line 332 is... if rs.EOF then<

Participate in my nonsense

Edited by - Bookie on 03 October 2002 19:56:38
Go to Top of Page

Bookie
Average Member

USA
856 Posts

Posted - 03 October 2002 :  20:28:04  Show Profile  Visit Bookie's Homepage  Send Bookie an AOL message  Send Bookie a Yahoo! Message  Reply with Quote
I think it's trying to force loop through a recordset that doesn't have any records. The first day is ok because it says, "There are no events for this date." When it tries to rs.movenext, nothing is there and throws out the error message. I wouldn't know how to resolve this.<

Participate in my nonsense
Go to Top of Page

red1
Junior Member

355 Posts

Posted - 04 October 2002 :  03:28:20  Show Profile  Reply with Quote
The error occurs before the loop through the recordset, so I guess that's not the error. I really don't know why you're getting this error because it works fine on my system. I'll try to do some searching and I'll get back to you<

My Mods:
New Events Calendar
New Non-database Active Users
Go to Top of Page

OpenIntro
Junior Member

USA
126 Posts

Posted - 04 October 2002 :  03:33:12  Show Profile  Send OpenIntro an AOL message  Reply with Quote
I was curious....I know it is possible to hide forums from non-members or selected members or what not....but is it possible to hide a forum from being SEEN on the main forum page, while allowing it to be accesses through this MOD?

To explain a little more clearly....I like how the events write to a topic and allow users to respond, but I don't want to make it an actual category ON the forum that they can choose to go look at it. I only want them to access it through the calendar or events links. Does this make sense, and is it possible? Thanks!!!!

Cheers!
<

Let's All Do Kamikaze Shots!
http://www.kamikazeshots.com
http://www.kamikazeshots.com/forum
*DO YOUR CLICKS!*
http://dailyclicks.kamikazeshots.com
Go to Top of Page

red1
Junior Member

355 Posts

Posted - 04 October 2002 :  03:47:05  Show Profile  Reply with Quote
I suppose it is...

Find this line in default.asp around line 498

if Request.Cookies(HideForumCat) <> "Y" then  '##### added as part of Minimize Category Mod #####



Replace it with this:

if Request.Cookies(HideForumCat) <> "Y" and ForumID <> 1 then  '##### added as part of Minimize Category Mod #####


Change the number to the ForumID that you want to hide<

My Mods:
New Events Calendar
New Non-database Active Users
Go to Top of Page

Bookie
Average Member

USA
856 Posts

Posted - 04 October 2002 :  09:08:59  Show Profile  Visit Bookie's Homepage  Send Bookie an AOL message  Send Bookie a Yahoo! Message  Reply with Quote
quote:
Originally posted by red1

The error occurs before the loop through the recordset, so I guess that's not the error. I really don't know why you're getting this error because it works fine on my system. I'll try to do some searching and I'll get back to you



The error is occuring on the second day so it has already gone through one cycle in the loop. Try viewing a week where there are no events and see if you get the same error.<

Participate in my nonsense
Go to Top of Page

goldfish
New Member

82 Posts

Posted - 04 October 2002 :  12:31:28  Show Profile  Reply with Quote
Red1,

I've tried creating a whole new database, but it's made no difference. Same problem in post.asp (which means no clashes with other mods... yaaaay for you... ) but means that I need to track the dsn stuff down....

I'm going to post a thread on the SQL queries bit, as I don't know how to find out about dsn information...

Have a nice weekend...

Simon<
Go to Top of Page

Fresdar
Starting Member

19 Posts

Posted - 04 October 2002 :  19:34:56  Show Profile  Reply with Quote
One thing that I found is that after installing the Mod I can't edit topics on my board. I can edit the replies just fine but when I click to edit a topic the textarea comes up blank. Any ideas?

Here is the address just in case.
http://www.designambitions.com/heroes/mb/<
Go to Top of Page

red1
Junior Member

355 Posts

Posted - 05 October 2002 :  01:27:07  Show Profile  Reply with Quote
Terribly sorry about that. It wasn't until recently that I was able to test this mod on SQL server, so I'm just starting to get these quirks ironed out. I uploaded a new version that fixes this bug. The problem is with post.asp, find these lines
dateHolder=strtodate(rs("T_EVENT_DATE"))
isevent=rs("T_ISEVENT")
and move them a few lines below. See the updated readme. I also updated the recordset retrieving on the other files. Hopefully that fixes the other problems as well.<

My Mods:
New Events Calendar
New Non-database Active Users

Edited by - red1 on 05 October 2002 02:20:35
Go to Top of Page

stwilson
Junior Member

USA
385 Posts

Posted - 05 October 2002 :  04:19:52  Show Profile  Visit stwilson's Homepage  Reply with Quote
OK...I have an issue I have not seen posted. I have installed the mod on 3.4.03 on SQL. I ran setup and made the changes to the files. Now everything appears to be working, EXCEPT, when I post an event it never shows up on any of the days. It is accepted, without errors but is never presented. I see the columns in the DB but they are not populating on submission. Any thoughts?

STW<

Shannon
RidingArizona.com
Go to Top of Page

n/a
deleted

593 Posts

Posted - 05 October 2002 :  04:37:22  Show Profile  Reply with Quote
Am getting Invalid Date when I post a new event - after uploading the latest updates (dated:10/5/02) which I believe I did it ok (original install was 9/26/02).

My server date is set with -6 with 12 hour setting. This is because I have my forum running on Brinkster and am -6 behind. So, I am in 10/4/02 Friday timezone while a system/server closk is already in 10/5/02. Will this be possibly causing this invalid date error messae?

Otherwise, it's great...

I tried with Forum ServerTime setting and still getting Invalid Date error message.... probably did something wrong in changing forum files from the existing version to OCT5 fix version...

Which files do I check about this date synchronization thing?
<

Taku

Edited by - n/a on 05 October 2002 05:09:54
Go to Top of Page

red1
Junior Member

355 Posts

Posted - 05 October 2002 :  05:35:09  Show Profile  Reply with Quote
stwilson: please check the instructions for post_info.asp, you may have missed a part about updating the database.

LeoRat: It's in post.asp. It might be a good idea to check all the files though, I think I redid the sql statements in almost all of them since you last installed.<

My Mods:
New Events Calendar
New Non-database Active Users
Go to Top of Page

stwilson
Junior Member

USA
385 Posts

Posted - 05 October 2002 :  05:53:04  Show Profile  Visit stwilson's Homepage  Reply with Quote
I have checked that file three times and cannot find it. Here is a link to my post_info.txt

Can you see the issue there?

STWILSON<

Shannon
RidingArizona.com

Edited by - stwilson on 05 October 2002 12:44:50
Go to Top of Page
Page: of 32 Previous Topic Topic Next Topic  
Previous Page | Next Page
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 1.12 seconds. Powered By: Snitz Forums 2000 Version 3.4.07