Author |
Topic |
Spike SAS
Starting Member
2 Posts |
Posted - 16 June 2003 : 15:50:27
|
This has probably been mentioned here but seeing as there's 15 pages to go though it'll be abit hard to find.
I've installed the calender fine with no errors, looks great. ONLY problem is that the forums I have set up dont appear in the drop down list. Maybe I'm doing something wrong but I cant figure out how to add an event.
Hope Red1 is still monitering this thread.
Looking forward to an answer to this mystery.
Thanks< |
|
|
|
jmorris228
Starting Member
7 Posts |
Posted - 17 June 2003 : 11:18:13
|
Actually, this is the same problem I was having and figured it out.
Inside the cal_config.asp file is a section that reads:
' FORUM_ID where you want to post events ' You can enter more than one value (separate with commas) ' e.g. arrCalForumID = Array(1, 2, 5, 10)
arrCalForumID = Array(3)
Change the value in Array() to the corresponding forum(s) you wish to be able to use for events. < |
|
|
rmicroys
Starting Member
4 Posts |
Posted - 18 June 2003 : 13:39:46
|
does anybody have a patch to cal.asp for having a large list of forums which events can be posted to?< |
|
|
Yodabutt1
Starting Member
32 Posts |
Posted - 20 June 2003 : 10:57:12
|
The forum ID's are likely specific to your forum so i don't think a generic patch would work to update the event forums available. I could be wrong though. It's not too difficult though, you look through your forum ID's, get the numbers and add them to the array statement listed above. It's pretty quick and painless.< |
|
|
Seph
Starting Member
13 Posts |
Posted - 22 June 2003 : 05:28:48
|
Well everything looks right, I just can't post any polls, events or messages :S. I think its something wrong with my post_info.asp
Here the error I get:
Microsoft JET Database Engine error '80040e14'
Number of query values and destination fields are not the same.
/shadesofwar/forum/post_info.asp, line 977
and heres a link to the .txt version of my post_info.asp file:
http://www.sonsofdarkness.co.uk/post_info.txt
Can you figure out whats wrong? im lost < |
|
|
Seph
Starting Member
13 Posts |
Posted - 23 June 2003 : 10:35:39
|
Err... I still need help with this (Up!)< |
|
|
Hobeeb
Starting Member
17 Posts |
Posted - 24 June 2003 : 11:19:27
|
Is there anyway possible to have the events calendar run on a seperate page, not a snitz forum page, but rather have that one component run on a seperate .asp page??< |
|
|
Hobeeb
Starting Member
17 Posts |
Posted - 24 June 2003 : 11:27:08
|
quote: Originally posted by Yodabutt1
time & location fields would be great for this! I'd badly need recurring events and multiday events would be nice too. Anyone have ideas or updates? MUCH GRASS.
I agree, these features are needed badly!< |
Edited by - Hobeeb on 24 June 2003 11:28:14 |
|
|
Pouyan
New Member
91 Posts |
Posted - 24 June 2003 : 15:46:40
|
Another neat enhancement to this mod would be giving users the option of getting notification about events on their Cell phone or Mobile device through SMS messaging I have no clue what it would take to add something like that to this mod... but it sure would make it unique < |
|
|
Kiusugi
Starting Member
6 Posts |
Posted - 29 June 2003 : 10:51:57
|
Hi, i have a little problem with this Mod. I have install Calendar Mod whitout Error and into Forum's Homapage the table with this feature is visible. The problem is when i post a new Events, in Drop Down list in Events Viewer Daily a cannot see any forum to post.
arrCalForumID = Array(16)
This line is a code for ForumID to see in DropDown List...
Can you help me?
PS.: Sorry for my english but i'm a Italian Boy ^__^< |
|
|
DM Jackal
Starting Member
2 Posts |
Posted - 02 July 2003 : 21:41:11
|
quote: Originally posted by Hobeeb
Is there anyway possible to have the events calendar run on a seperate page, not a snitz forum page, but rather have that one component run on a seperate .asp page??
I was wondering the same thing, is there anyone who can help out please?
Thanks< |
|
|
terre
Starting Member
18 Posts |
Posted - 03 July 2003 : 19:00:40
|
quote: Originally posted by Hobeeb
Is there anyway possible to have the events calendar run on a seperate page, not a snitz forum page, but rather have that one component run on a seperate .asp page??
I am using the recurring dates version of this calendar and I have it on a separate page from the forum. I simply placed cal.asp code into my template page ... then made sure that the include files were changed to virtual (cuz it was outside the forum folder) ... then I copied the inc_header page and removed what I didn't want, renamed it and used that as the virtual include file. Perhaps you need to do something similar. (I did have to change some of the links to make them point to the correct page since I moved it outside the forum folder.) < |
|
|
Kal Corp
Average Member
USA
878 Posts |
Posted - 11 July 2003 : 19:22:17
|
Just a FYI
new_events_calendar_-34-Recurr_b3
CAL.ASP
If recForumCount <> "" then
For iForum = 0 to recForumCount
ForumForumID = allForumData(fFORUM_ID, iForum)
ForumSubject = allForumData(fF_SUBJECT, iForum)
strOptions = strOptions & "<option value=""" & ForumForumID & """"
If cLng(arrRqCalForumID) = cLng(ForumForumID) then strOptions = strOptions & " selected"
strOptions = strOptions & ">" & ChkString(left(ForumSubject, 50),"display") & "</option>" & vbNewline
Next
End if
cLng function is failing for me. Only worked when i chagned it to INT Example
If recForumCount <> "" then
For iForum = 0 to recForumCount
ForumForumID = allForumData(fFORUM_ID, iForum)
ForumSubject = allForumData(fF_SUBJECT, iForum)
strOptions = strOptions & "<option value=""" & ForumForumID & """"
If int(arrRqCalForumID) = int(ForumForumID) then strOptions = strOptions & " selected"
strOptions = strOptions & ">" & ChkString(left(ForumSubject, 50),"display") & "</option>" & vbNewline
Next
End if
just a FYI. you might have already found this
Nice mod!< |
{VAS}-Kal Corp VAS Development NetWork - Forums for old Snitz Mods! Creator of all things {VAS}
|
Edited by - Kal Corp on 11 July 2003 19:23:02 |
|
|
terre
Starting Member
18 Posts |
Posted - 20 July 2003 : 21:25:12
|
quote: Originally posted by Kal Corp
Just a FYI
new_events_calendar_-34-Recurr_b3
cLng function is failing for me. Only worked when i chagned it to INT
Yep. Same problem for me.< |
|
|
Baroudeur
Starting Member
25 Posts |
Posted - 24 July 2003 : 15:43:14
|
When i write Session.LCID = 1036 in config.asp, the main page give me right date in french as i expect but if i click on calendar i have this error message Type d'erreur : Erreur d'exécution Microsoft VBScript (0x800A000D) Type incompatible: 'cLng' /forumaargh/cal.asp, line 1383 the line 1383 is like that If cLng(arrRqCalForumID) = cLng(ForumForumID) then strOptions = strOptions & " selected"
What is wrong ??
If i change cLng with Int all is fine too if session.LCID is 1033 but when i write it as 1036 i have the error< |
This account was hacked into by Image, a very honest guy as you all can see! Stealing people's passwords is his pasttime. Beware of this, before you register at his forums! |
Edited by - Baroudeur on 26 July 2003 05:34:46 |
|
|
Topic |
|