Author |
Topic |
goldfish
New Member
82 Posts |
Posted - 26 September 2002 : 05:35:28
|
Hi Red1!
Looks good...
I haven't installed yet, but am about to, to have a proper look around. I have one quick question...
With the Upcoming and Recent Events lists on the home page, it would be helpful if the dates were actually listed next to the events links, as with the original Events Calendar (but preferably include picking up regional date settings...! )?
I shouldn't think this is too difficult, but I'm a moron, so should probably keep my mouth shut...
Simon< |
Edited by - goldfish on 26 September 2002 07:02:58 |
|
|
red1
Junior Member
355 Posts |
Posted - 26 September 2002 : 06:27:44
|
quote: Originally posted by goldfish
With the Upcoming and Recent Events lists on the home page, it would be helpful if the dates were actually listed next to the events links, as with the original Events Calendar (but preferably include picking up regional date settings...! :) )?
That's a rather embarassing oversight on my part Thanks for reminding me< |
My Mods: New Events Calendar New Non-database Active Users |
Edited by - red1 on 26 September 2002 06:46:04 |
|
|
goldfish
New Member
82 Posts |
Posted - 26 September 2002 : 07:04:51
|
Oh tush...
I was just wondering whether or not you'd sussed that links from the Events calendar would have to list all events on a single day with links to the relevant threads, but you'd already thought of that, so I think you can be more than happy with what's going on so far...
Lovely job (I really should know to put square brackets around Snitz smilies by now... )
Simon< |
|
|
Carefree
Advanced Member
Philippines
4207 Posts |
Posted - 26 September 2002 : 09:19:22
|
quote: Originally posted by red1
jtcoyle -- I posted a question on Help: Database: MS Access too see if someone there more knowledgable than myself can answer your question.
Carefree -- See here: http://forum.snitz.com/forum/topic.asp?TOPIC_ID=35204 Looks like there were some changes to post_info.asp and post.asp from 3.4.02 to 3.4.03. After you apply them I think it would work.
Active.asp is completely different from .02 to .03 - instructions are not even close (sigh). I'll just have to rewrite it, I guess.< |
|
|
seven
Senior Member
USA
1037 Posts |
Posted - 26 September 2002 : 09:22:29
|
Nice job red1... I think this calendar mod will fit better into the flow of a site I've been working on. < |
|
|
|
jtcoyle
Starting Member
17 Posts |
Posted - 26 September 2002 : 16:04:26
|
Stupid, stupid, stupid me. I figured out what my problem was. I did have the correct Access string selected in the config.asp. I had the Access 98 selected instead of the Access 2000 selected. I am NOW ABLE to load the default.asp page and see the calendar but there seems to be another issue with topic.asp.
I am able to post a new even, I just can not view the even once it is posted.
When I select any topic, I get the following error.
Error Type: Microsoft VBScript compilation (0x800A0400) Expected statement /forum_backup/topic.asp, line 679
If I replace the topic.asp file with the orginal one from the install (not modified in any way) I am able view a posted topic.
I have follow the update instructions on this file at least 3 times making sure that I have not made a mistake editing the file.
Please look over your code and let me know what I need to change to get this to work.
Thanks,
Joe< |
Edited by - jtcoyle on 26 September 2002 16:16:03 |
|
|
goldfish
New Member
82 Posts |
Posted - 26 September 2002 : 16:17:45
|
Erm... yeah, I think I got the same....
I'm not at work (I stayed behind to add the mod, and got everything working (looking great) up to actually seeing my new Event as a post and it died on it's arse.....
I exited stage left, frowning.... ;)
Simon< |
|
|
jtcoyle
Starting Member
17 Posts |
Posted - 26 September 2002 : 17:26:41
|
I do not have time to try this but I will later tonight. I did find two section in topic.asp that as the line,
' End of Code added for Full Moderation
One around line 670 and one around 871 as outlined in the install instruction.
I want to try and move the code to line 670 and see if this fixes the problem.
It will be a few hours before I can get around to it. I have a meeting I need to go to.
Joe< |
|
|
red1
Junior Member
355 Posts |
Posted - 26 September 2002 : 17:45:49
|
quote: Originally posted by jtcoyle
Stupid, stupid, stupid me. I figured out what my problem was. I did have the correct Access string selected in the config.asp. I had the Access 98 selected instead of the Access 2000 selected. I am NOW ABLE to load the default.asp page and see the calendar but there seems to be another issue with topic.asp.
I am able to post a new even, I just can not view the even once it is posted.
When I select any topic, I get the following error.
Error Type: Microsoft VBScript compilation (0x800A0400) Expected statement /forum_backup/topic.asp, line 679
If I replace the topic.asp file with the orginal one from the install (not modified in any way) I am able view a posted topic.
I have follow the update instructions on this file at least 3 times making sure that I have not made a mistake editing the file.
Please look over your code and let me know what I need to change to get this to work.
Thanks,
Joe
Line 871 is the correct one, right before this part:
Response.Write " <tr>" & vbNewLine & _
" <td valign=""top"" height=""100%""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strForumFontColor & """><span class=""spnMessageText"" id=""msg"">"
if Request.QueryString("SearchTerms") <> "" then
Response.Write SearchHiLite(formatStr(Topic_Message))
else
Response.Write formatStr(Topic_Message)
end if
< |
My Mods: New Events Calendar New Non-database Active Users |
Edited by - red1 on 26 September 2002 18:38:15 |
|
|
red1
Junior Member
355 Posts |
Posted - 26 September 2002 : 17:53:33
|
quote: Originally posted by Carefree
Active.asp is completely different from .02 to .03 - instructions are not even close (sigh). I'll just have to rewrite it, I guess.
active.asp isn't critical to the functioning of the mod... the changes simply display the correct icon and adds the word "Event" to the title if the post is an event.< |
My Mods: New Events Calendar New Non-database Active Users |
|
|
red1
Junior Member
355 Posts |
Posted - 26 September 2002 : 18:23:28
|
quote:
When I select any topic, I get the following error.
Error Type: Microsoft VBScript compilation (0x800A0400) Expected statement /forum_backup/topic.asp, line 679
I found a missing Response.Write for line 880 of topic.asp and added it to the readme< |
My Mods: New Events Calendar New Non-database Active Users |
Edited by - red1 on 26 September 2002 18:45:15 |
|
|
jtcoyle
Starting Member
17 Posts |
Posted - 26 September 2002 : 23:38:01
|
Well I have updated the code once again only to find there still seems to be a problem.
I feel we are real close and I wish I knew asp better but I do not.
red1---How can I help you find what may be causing your code not to work as intended.
Here is the error code I am getting now,
Error Type: Microsoft VBScript runtime (0x800A01A8) Object required: 'Reponse' /forum_backup/topic.asp, line 880
Line 880 is this,
Reponse.Write " <tr>" & vbNewLine & _
I hope we can figure this out. I have spen allot of time trying to implement this.
Joe
PS Can you send me a working topic.asp?< |
Edited by - jtcoyle on 26 September 2002 23:39:28 |
|
|
red1
Junior Member
355 Posts |
Posted - 26 September 2002 : 23:45:18
|
I feel silly, I just misspelled "Response"... that's the only error left, it should work now. My apologies, and thank you for helping me test the mod.< |
My Mods: New Events Calendar New Non-database Active Users |
Edited by - red1 on 26 September 2002 23:47:51 |
|
|
jtcoyle
Starting Member
17 Posts |
Posted - 27 September 2002 : 00:12:20
|
Glad to help. I also feel silly for not catching the spelling error.
I think I found another bug. When you edit a topic, the subject line repeats it's self in the field with a coma seperating the two subjects. After 3 edits the subject is to long to post correctly. I have no idea what would be causing the subject to repeat.
If you delete everything out of the subject and then update the topic, a comma is added to the subject.
Also, when I select edit and go to the edit page, there are two subject boxes.< |
Edited by - jtcoyle on 27 September 2002 00:15:39 |
|
|
red1
Junior Member
355 Posts |
|
Topic |
|