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

Therion93
Junior Member

USA
263 Posts

Posted - 29 September 2002 :  21:59:53  Show Profile  Send Therion93 an ICQ Message  Reply with Quote
quote:
Originally posted by red1

I added a fix for the wrong server time. Can someone pls test this before I re-upload it to snitzbitz



I updated the mod files and it is still displaying the incorrect date. My hosting server is on UK time and I'm on US Central time so I have set my forum time to -6.

Sorry I didn't get back to you sooner on this.<

Edited by - Therion93 on 29 September 2002 22:00:37
Go to Top of Page

red1
Junior Member

355 Posts

Posted - 29 September 2002 :  22:26:00  Show Profile  Reply with Quote
quote:
Originally posted by Therion93

quote:
Originally posted by red1

I added a fix for the wrong server time. Can someone pls test this before I re-upload it to snitzbitz



I updated the mod files and it is still displaying the incorrect date. My hosting server is on UK time and I'm on US Central time so I have set my forum time to -6.

Sorry I didn't get back to you sooner on this.



Are the dates wrong on all the calendar pages or just on default.asp?<

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

tomshuman
Starting Member

5 Posts

Posted - 29 September 2002 :  23:25:32  Show Profile  Reply with Quote
Very sweet mod!! Installed it and beat it up pretty good today. Seems to be working well.
I would like to second the request for a week view. I would like to use the calendar
with a sports team, and it helps to see the week on a single page...

My other "wish" is for a button or link in the forum to add an event. You need to drill pretty far down into the calendar section to add a calendar item. Somewhat cumbersome to add more than a couple items at a time.

Thanks again for the great effort! And from the date/time stamps on these posts, get some rest!
<
Go to Top of Page

Therion93
Junior Member

USA
263 Posts

Posted - 30 September 2002 :  00:57:18  Show Profile  Send Therion93 an ICQ Message  Reply with Quote
Sorry about that. All pages.<
Go to Top of Page

Bookie
Average Member

USA
856 Posts

Posted - 30 September 2002 :  23:37:51  Show Profile  Visit Bookie's Homepage  Send Bookie an AOL message  Send Bookie a Yahoo! Message  Reply with Quote
Red1, are you planning on having paging on the events list pages (past and future)? I can see on my forum where this would be a real benefit. I'll be using it mostly for posting genealogical information and people will use the list view to look back into history to research dates. I actually created a list view on the previous events mod and used that a little bit.

After a while as I post events in the past and as others post events, the list could get quite huge. That's my request for this mod. Great job, by the way!<

Participate in my nonsense
Go to Top of Page

goldfish
New Member

82 Posts

Posted - 01 October 2002 :  08:00:12  Show Profile  Reply with Quote
Hi Red,

I've done a clean install of 3.4.03, and used ALL the files from the latest SnitzBitz download package, but am getting a few problems:-

Dates - When creating a new Topic/Event, the date is still coming up in US (mm/dd/yyyy) format in the date field, and not the format specified for my board (UK dd/mm/yyyy).

Editting Events - When I try to edit an event, I get the following error:-

Microsoft OLE DB Provider for ODBC Drivers error '80040e21' 

Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done. 

/forum/post.asp, line 356 


Posting URLs in topics - If I try to include a URL in a topic, it's creating a link automatically, but still displaying the {URL=http://intranet/}testlink ignore{/URL} Forum Codes...

Sorry to hit you with a load of problems...

Simon <
Go to Top of Page

red1
Junior Member

355 Posts

Posted - 01 October 2002 :  13:00:58  Show Profile  Reply with Quote
quote:

Dates - When creating a new Topic/Event, the date is still coming up in US (mm/dd/yyyy) format in the date field, and not the format specified for my board (UK dd/mm/yyyy).


You need to specify your correct LCID in config.asp. Find this line:
Session.LCID = 1033
Change it to 2057 for UK date

quote:

Editting Events - When I try to edit an event, I get the following error:-

Microsoft OLE DB Provider for ODBC Drivers error '80040e21'

Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.

/forum/post.asp, line 356


Hmm... I haven't done anything to post.asp that would generate this error. Are you using a DSN? Your connection could be wrong.

quote:

Posting URLs in topics - If I try to include a URL in a topic, it's creating a link automatically, but still displaying the {URL=http:// intranet/}testlink ignore{/URL} Forum Codes...


I think I've corrected this. I have a new version coming up in a while, I'm trying to fix as much as I can and incorporate everyone's suggestions.
<

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

Fish
Starting Member

16 Posts

Posted - 01 October 2002 :  14:30:41  Show Profile  Reply with Quote
Okay Red here's what I've found. If I quote or edit the first topic in a thread the message (T_MESSAGE) is not retrieved and I have a blank Message Box.

If I don't add the following to end of line 341 of post.asp, but do everything else in post.asp then my quoting and editing works fine:

strSql = "SELECT M.M_NAME, T.CAT_ID, T.FORUM_ID, T.TOPIC_ID, T.T_SUBJECT, T.T_AUTHOR, T.T_STICKY, T.T_SIG, T.T_MESSAGE, T.T_MSGICON, T.T_EVENT_DATE, T.T_ISEVENT"

NOTE: I included the T.T_MSGICON that I added with the Message Icon Mod

Fish
http://www.outsidethegarden.com
<
Go to Top of Page

red1
Junior Member

355 Posts

Posted - 01 October 2002 :  15:06:54  Show Profile  Reply with Quote
Fish:

Try inserting this line below line 341

	strSql = strSql & ", T.T_EVENT_DATE, T.T_ISEVENT "

instead of putting it at the end of the line<

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

Fish
Starting Member

16 Posts

Posted - 02 October 2002 :  14:10:18  Show Profile  Reply with Quote
Unfortunately it made no difference...same symptom

Fish
http://www.outsidethegarden.com<
Go to Top of Page

goldfish
New Member

82 Posts

Posted - 03 October 2002 :  10:28:12  Show Profile  Reply with Quote
quote:
Originally posted by red1


You need to specify your correct LCID in config.asp. Find this line:
Session.LCID = 1033
Change it to 2057 for UK date


Cheers boss, that worked great (although I always get nervous changing something that specifically says DO NOT CHANGE next to it.... )

quote:
Hmm... I haven't done anything to post.asp that would generate this error. Are you using a DSN? Your connection could be wrong.



I don't THINK I'm using a DSN... do they hurt? I did a quick search and found out that DSN is Data Source Name, and from that I THINK I can tell you that we're using ODBC (forgive me if I'm now sounding dense... I'm reaching outside my sphere of comfort here), as we're using SQL Server (and I assume the ODBC is all but inevitable). If the DSN is SEPARATE to this information, please tell and I'll do some more rummaging.

I didn't (and couldn't at present) set it all up originally (we're on a corporate office intranet) and the people who did have the nous have all left as well, so I'm stuck maintaining something I don't fully understand, but am slowly getting my head around...

What I'm wondering is if it might be beneficial for me to establish an all new database to start off from, and see if the problem is caused by a previously installed MOD that's left some sort of legacyu crap in the current database. That would indicate that there might be a conflict with one of the few mods that I have installed... of course I might also be talking out of my arse...

quote:
I think I've corrected this. I have a new version coming up in a while, I'm trying to fix as much as I can and incorporate everyone's suggestions.


Cool, if I can get over the editing problem (which is quite a biggy for me) then this will be the last problem I've found.

Cheers Red1... you're a bit of a star for dealing with all the queries and the wide range of technical ability you're dealing with here too...

Simon<
Go to Top of Page

goju
New Member

Canada
67 Posts

Posted - 03 October 2002 :  13:09:00  Show Profile  Visit goju's Homepage  Reply with Quote
i haven't been able to download the changed files for a few days... anyone else having problems with the link or is it just me?<
Go to Top of Page

Fresdar
Starting Member

19 Posts

Posted - 03 October 2002 :  15:53:31  Show Profile  Reply with Quote
same problem here.<
Go to Top of Page

red1
Junior Member

355 Posts

Posted - 03 October 2002 :  18:28:27  Show Profile  Reply with Quote
the new version has just been uploaded to snitzbitz<

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:11:24  Show Profile  Visit Bookie's Homepage  Send Bookie an AOL message  Send Bookie a Yahoo! Message  Reply with Quote
I'm getting an error in Week View in cal.asp.

Microsoft VBScript runtime error '800a01a8'

Object required

/forum/cal.asp, line 327

Line 327 is...


	  rs.filter = 0
<

Participate in my nonsense
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 0.17 seconds. Powered By: Snitz Forums 2000 Version 3.4.07