Author |
Topic  |
Zenfor
Junior Member
 
372 Posts |
Posted - 08 May 2013 : 07:29:05
|
I just did a fresh 3.4.07 install using my existing upgraded 3.4.03 database. I had the events calendar running perfectly and now I want to install the latest calendar version on my new 3.4.07 install. Do I need to do the DB update since I already was running the calendar or is there anything I need to watch out for? Just checking before I jump into it. Thanks! |
|
AnonJr
Moderator
    
United States
5768 Posts |
Posted - 08 May 2013 : 09:52:53
|
Unless you're installing a newer version of the calendar mod and it requires a database upgrade, you shouldn't need to re-do the database update when using your old database. The only thing you should need to do is add the appropriate code.
Just be a little more mindful when adding the code because it may be referencing a line that has moved/changed between 3.4.03 and 3.4.07... |
 |
|
Zenfor
Junior Member
 
372 Posts |
Posted - 08 May 2013 : 15:10:23
|
quote: Originally posted by AnonJr
Unless you're installing a newer version of the calendar mod and it requires a database upgrade, you shouldn't need to re-do the database update when using your old database. The only thing you should need to do is add the appropriate code.
Just be a little more mindful when adding the code because it may be referencing a line that has moved/changed between 3.4.03 and 3.4.07...
OK, thanks! |
 |
|
Zenfor
Junior Member
 
372 Posts |
Posted - 08 May 2013 : 19:16:19
|
I noticed there is a file call "cal_admin.asp" in the download package but the directions don't include it in the files to move into the forum folder. Is this an oversight in the directions or should the file be ignored? Thanks! |
 |
|
Zenfor
Junior Member
 
372 Posts |
Posted - 08 May 2013 : 20:08:11
|
Moved and updated all the files. I didn't update the database because I had the calendar running on my old 3.4.03 db that I am using with this new install. Appreciate any help fixing this. Thanks.
============================= May 2013 Microsoft JET Database Engine error '80040e37'
The Microsoft Jet database engine cannot find the input table or query 'FORUM_CAL_EVENTS'. Make sure it exists and that its name is spelled correctly.
/forum_new/cal_functions.asp, line 81
Sun Mon Tue Wed Thu Fri Sat
|
 |
|
Carefree
Advanced Member
    
Philippines
4222 Posts |
Posted - 08 May 2013 : 21:40:32
|
quote: Originally posted by Zenfor
I noticed there is a file call "cal_admin.asp" in the download package but the directions don't include it in the files to move into the forum folder. Is this an oversight in the directions or should the file be ignored? Thanks!
It's an oversight, copy it. |
 |
|
Carefree
Advanced Member
    
Philippines
4222 Posts |
Posted - 08 May 2013 : 21:42:21
|
quote: Originally posted by Zenfor
Moved and updated all the files. I didn't update the database because I had the calendar running on my old 3.4.03 db that I am using with this new install. Appreciate any help fixing this. Thanks.
============================= May 2013 Microsoft JET Database Engine error '80040e37'
The Microsoft Jet database engine cannot find the input table or query 'FORUM_CAL_EVENTS'. Make sure it exists and that its name is spelled correctly.
/forum_new/cal_functions.asp, line 81
Sun Mon Tue Wed Thu Fri Sat
You have to run "dbs_cap.asp" (Title: New Events Calendar Mod (Recurring Dates) for Snitz 3.4.05) from the Mod Setup link. |
 |
|
Zenfor
Junior Member
 
372 Posts |
Posted - 08 May 2013 : 22:39:38
|
quote: Originally posted by Carefree You have to run "dbs_cap.asp" (Title: New Events Calendar Mod (Recurring Dates) for Snitz 3.4.05) from the Mod Setup link.
Logged in with a member level of Administrator and clicking on the Mod Setup link, I get this message:
There has been a problem!
Only the Forum Admin can access this page
|
 |
|
Carefree
Advanced Member
    
Philippines
4222 Posts |
Posted - 09 May 2013 : 00:13:08
|
You have to be logged in with the Forum Admin account. Look in "config.asp" and see which account number that is. Then log in using that account. |
 |
|
Zenfor
Junior Member
 
372 Posts |
Posted - 09 May 2013 : 06:44:28
|
quote: Originally posted by Carefree
You have to be logged in with the Forum Admin account. Look in "config.asp" and see which account number that is. Then log in using that account.
Now I'm confused. This is what I find in config. I don't have an "admin" account, I must have deleted it years ago. I use my username with a level of Administrator to manage the forum. I don't see where numbers are associated with usernames? How do I fix this? Thanks you!
'################################################################################# '## If you have deleted the default Admin account, you may need to change the '## value below. Otherwise, it should be left unchanged. (such as with a new '## installation) '################################################################################# Const intAdminMemberID = 1 |
 |
|
Zenfor
Junior Member
 
372 Posts |
Posted - 09 May 2013 : 08:16:10
|
Update: I figured out that I was number 3 and changed it in config. Still getting the "Only the Forum Admin can access this page" in mod set up.
Now all of a sudden the message when i call the forum changed to this:
May 2013 Microsoft VBScript runtime error '800a0005'
Invalid procedure call or argument: 'WeekDayName'
/forum_new/cal_functions.asp, line 45 |
 |
|
Carefree
Advanced Member
    
Philippines
4222 Posts |
Posted - 09 May 2013 : 22:03:18
|
The weekdayname is an inherent function of vbscript, unless you modified that file, it should be fine. |
 |
|
Zenfor
Junior Member
 
372 Posts |
Posted - 10 May 2013 : 08:18:30
|
quote: Originally posted by Carefree
The weekdayname is an inherent function of vbscript, unless you modified that file, it should be fine.
I didn't touch that file, it was a new file in the install package. I just deleted it and replaced it with the same file from the package and I get the same error. Thank you!
May 2013 Microsoft VBScript runtime error '800a0005'
Invalid procedure call or argument: 'WeekDayName'
/forum_new/cal_functions.asp, line 45
|
 |
|
AnonJr
Moderator
    
United States
5768 Posts |
Posted - 10 May 2013 : 08:52:59
|
Probably going to have to step through the code and make sure that a value (and one of the correct type) is being passed to the function.
The joys of adding older MODs means that there may be a variable/function/something being referenced that isn't used any more or produces a different output. Without the code for the files in question in front of us, it makes it a little harder to suss out the problem... |
 |
|
Zenfor
Junior Member
 
372 Posts |
Posted - 10 May 2013 : 09:19:56
|
quote: Originally posted by AnonJr
Probably going to have to step through the code and make sure that a value (and one of the correct type) is being passed to the function.
The joys of adding older MODs means that there may be a variable/function/something being referenced that isn't used any more or produces a different output. Without the code for the files in question in front of us, it makes it a little harder to suss out the problem...
A copy of the file is here: http://eastonmass.com/temp/cal_functions.txt
Thank you! |
 |
|
Zenfor
Junior Member
 
372 Posts |
Posted - 11 May 2013 : 11:01:04
|
OK, I'm at a stalemate with my 3.4.07 installation as can't do it unless I have a working calendar. Appreciate any ideas or help with this.
So far, the 3.4.07 installation an upgrade to my original db went perfect.
I've got 2 issue with installing the latest version of the events calendar.
1. I can't run the mod update, it says I'm not the admin. I found that I was number 3 and changed that in config.asp, still won't let me.
2. I went through all the steps of installing the events calendar and the latest messgae is this when I run my forum. I don't have a clue how to fix it. I did not change the file in any way. ==============================================
May 2013 Microsoft VBScript runtime error '800a0005'
Invalid procedure call or argument: 'WeekDayName'
/forum_new/cal_functions.asp, line 45 |
 |
|
Topic  |
|