Author |
Topic |
|
rustynails775
Starting Member
24 Posts |
Posted - 07 June 2003 : 13:14:00
|
There is no link for my to post new event in my forum.asp!?!?! why not |
|
weeweeslap
Senior Member
USA
1077 Posts |
Posted - 07 June 2003 : 13:16:09
|
post a copy of your forum.asp file in txt format so the people can view the file and perhaps debug it, did you edit the forum.asp as indicated by the readme file? check the file to see you added everythign that was needed to add as u need to make often changes in more than one place or the same change twice. |
coaster crazy |
|
|
rustynails775
Starting Member
24 Posts |
Posted - 07 June 2003 : 13:31:25
|
I figured out a problem...I need to know how to turn event posting on?!?!? |
Edited by - rustynails775 on 07 June 2003 18:41:34 |
|
|
weeweeslap
Senior Member
USA
1077 Posts |
Posted - 07 June 2003 : 21:32:02
|
open cal_config.asp and in lines 23-26 it tells you what number to put in line 26 for who can post events:
(line 23)' Member level allowed to post events (line 24)' Admins only = 4, Admins and Moderators = 3, All Members = 2 (line 25) (line 26)Const intCalMLev = 4
there's other configurable settings in the cal_config.asp file so open it up and edit the stuff there. |
coaster crazy |
|
|
rustynails775
Starting Member
24 Posts |
Posted - 07 June 2003 : 21:42:07
|
Yeah, I know.,.it's set to 4 (Admins only), but still says that "Events are not allowed in this forum"...so, what do I do? |
|
|
weeweeslap
Senior Member
USA
1077 Posts |
Posted - 07 June 2003 : 22:02:26
|
lines 14-19 in cal_config.asp:
' 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(1)
edit the red part, just hover your mouse over the forum you want to post events and you should see the forum id in the link for example hovering over the mod implementation forum here reveals: http://forum.snitz.com/forum/forum.asp?FORUM_ID=94 so you would add a , 94 after the 1 so it is like this: arrCalForumID = Array(1, 94) , you do that for all the forums you want it to be able to post events. you know keep adding , #, # ,# ,# ,# until you have added the all the forum ID's that you want events to be posted in. If you are unsure link me to your forum and tell me what forunms you want and I'll edit the line for you so u can just copy and paste it. Let me know if it works out. |
coaster crazy |
Edited by - weeweeslap on 07 June 2003 22:02:52 |
|
|
goldfish
New Member
82 Posts |
Posted - 17 June 2003 : 06:10:33
|
I think this info (the array stuff) is for the Beta repeating dates version, I think, so it might not be relevant for the normal (non-repeating dates) version.
Simon |
|
|
Rrok007
Junior Member
USA
149 Posts |
Posted - 17 June 2003 : 07:46:22
|
WeeWee Slap, have you had any problems with the number of forums. I've seen dpmcalister's spycraft site, and he's got more than 10 forums up with no problems. But everytime I've put more than 9 forums in the array statement, it's come up with an VBScript error. |
Believe disbelief and contemplate the simple. |
|
|
rmicroys
Starting Member
4 Posts |
Posted - 18 June 2003 : 11:08:04
|
I'm not quite sure how it goes through the array, but it seems to choke when dismintating the array.
Why is cLng(arrRqCalForumID) being called? Doesn't that try to convert the whole array to a long? then that means a length of forum Ids which are bigger than 2,147,483,647. will make the code fail?
|
Edited by - rmicroys on 18 June 2003 11:10:10 |
|
|
|
Topic |
|