Author |
Topic |
Bookie
Average Member
USA
856 Posts |
Posted - 03 October 2002 : 19:13:38
|
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 |
|
|
red1
Junior Member
355 Posts |
|
Bookie
Average Member
USA
856 Posts |
Posted - 03 October 2002 : 19:56:09
|
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 |
|
|
Bookie
Average Member
USA
856 Posts |
Posted - 03 October 2002 : 20:28:04
|
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 |
|
|
red1
Junior Member
355 Posts |
Posted - 04 October 2002 : 03:28:20
|
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 |
|
|
OpenIntro
Junior Member
USA
126 Posts |
Posted - 04 October 2002 : 03:33:12
|
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 |
|
|
red1
Junior Member
355 Posts |
Posted - 04 October 2002 : 03:47:05
|
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 |
|
|
Bookie
Average Member
USA
856 Posts |
Posted - 04 October 2002 : 09:08:59
|
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 |
|
|
goldfish
New Member
82 Posts |
Posted - 04 October 2002 : 12:31:28
|
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< |
|
|
Fresdar
Starting Member
19 Posts |
Posted - 04 October 2002 : 19:34:56
|
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/< |
|
|
red1
Junior Member
355 Posts |
Posted - 05 October 2002 : 01:27:07
|
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 |
|
|
stwilson
Junior Member
USA
385 Posts |
Posted - 05 October 2002 : 04:19:52
|
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 |
|
|
n/a
deleted
593 Posts |
Posted - 05 October 2002 : 04:37:22
|
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 |
|
|
red1
Junior Member
355 Posts |
Posted - 05 October 2002 : 05:35:09
|
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 |
|
|
stwilson
Junior Member
USA
385 Posts |
Posted - 05 October 2002 : 05:53:04
|
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 |
|
|
Topic |
|