Search found 11 matches

by mb323
Sun Dec 03, 2017 2:28 pm
Forum: Verison 4.0x Support Forum
Topic: Time for 5.0
Replies: 43
Views: 23808

Re: Time for 5.0

Agreed it is time for 5.0, how many developers do we have? I have debated just rewriting the whole thing from scratch, but as dwhitaker says, it's hard to find the time. While I am not opposed to LAMP, PHP is a PITA to code, most PHP frameworks are limited and you have to code your security model fr...
by mb323
Sun Dec 03, 2017 10:15 am
Forum: Verison 4.0x Support Forum
Topic: Weekly Results delay before showing next week
Replies: 9
Views: 6014

Re: Weekly Results delay before showing next week

Here is my common.asp. I have been using this mod since week 2 without any issues. I'm not sure how many customizations have been put in there, however it does have the colors update. I haven't added the individual game lock time change because that allows someone to change their Monday night game b...
by mb323
Tue Oct 03, 2017 8:41 am
Forum: Verison 4.0x Support Forum
Topic: Weekly Results delay before showing next week
Replies: 9
Views: 6014

Re: Weekly Results delay before showing next week

Update, I have use the above mod I posted for the past 3 weeks with no issues. Games lock on time, everything else functions as expected.
by mb323
Tue Oct 03, 2017 8:30 am
Forum: Verison 4.0x Support Forum
Topic: Add Morning Games to Early Game Listings
Replies: 2
Views: 2725

Re: Add Morning Games to Early Game Listings

You will need to edit "default.asp" Search for these 3 lines: if week <> rs.Fields("Week").Value and _ dayName <> vbSunday and _ dayName <> vbMonday then and replace with this 1 line: if (week <> rs.Fields("Week").Value and dayName <> vbSunday and dayName <> vbMonday) o...
by mb323
Wed Sep 13, 2017 12:28 pm
Forum: Verison 4.0x Support Forum
Topic: Not showing winner
Replies: 2
Views: 2323

Re: Not showing winner

The only thing I can come up with is what did you do with the Miami game? If you just changed the date but not the week that may explain why your week is not complete.

I believe that game moved out to week 11?
by mb323
Tue Sep 12, 2017 3:24 pm
Forum: Verison 4.0x Support Forum
Topic: Weekly Results delay before showing next week
Replies: 9
Views: 6014

Re: Weekly Results delay before showing next week

raider_nation, very good point, I highly recommending testing to make sure all your picks lock on time. I updated my earlier post to clarify which dateTime = GetCurrentDateTime() to update as there are two. This should not impact when picks lock as far as I can tell the lock function uses GetCurrent...
by mb323
Tue Sep 12, 2017 12:08 pm
Forum: Verison 4.0x Support Forum
Topic: Weekly Results delay before showing next week
Replies: 9
Views: 6014

Re: Weekly Results delay before showing next week

Just a guess, but this will delay the change of the week by 1 day. In "includes/common.asp" In function: GetCurrentWeek() replace: dateTime = GetCurrentDateTime() with: dateTime = DateAdd("d", -1, GetCurrentDateTime()) In looking at the use of "GetCurrentWeek" through a...
by mb323
Mon Sep 11, 2017 8:46 am
Forum: Verison 4.0x Support Forum
Topic: Survivor Pool eliminating with 1 strike, strikes set to 3
Replies: 0
Views: 3446

Survivor Pool eliminating with 1 strike, strikes set to 3

In the config file I have const SURVIVOR_STRIKE_OUT = 3, however first week in two users who lost their survivor pick are marked as eliminated with "---" showing up for weeks 2-12, 13-17 are blank, Status=ELIMINATED... When I look at survivor statistics however it shows Pending 0, Eliminat...
by mb323
Mon Sep 11, 2017 8:20 am
Forum: Verison 4.0x Support Forum
Topic: Error weekly pick form
Replies: 3
Views: 4945

Re: Error weekly pick form

I ran into the same problem. After about 8 hours of troubleshooting it looks like Access 2016 is corrupting the MDB... not sure why yet, tried about 20 different MDB's in every different way to update I could think. The one that finally worked was to download the full pool, get the MDB from the zip ...
by mb323
Wed Sep 14, 2016 3:20 pm
Forum: Verison 4.0x Support Forum
Topic: Updated Code fix for the AutoUpdate (Scoring) Feature
Replies: 40
Views: 43528

Re: Updated Code fix for the AutoUpdate (Scoring) Feature

If anyone is having trouble or hasn't updated the updatescores.asp yet, I made a change to mine to make the year update automatic. I checked the current master download and it has all of the updates from above. Also there are no changes required for the LA RAMS. To automatically change the year sear...
by mb323
Fri Nov 01, 2013 7:46 am
Forum: Verison 4.0x Support Forum
Topic: Auto Scoring Fix, 1st and 2nd fixes
Replies: 10
Views: 8006

Re: Auto Scoring Fix, 1st and 2nd fixes

Scores not working again last night due to OT, this may not be the best fix but it works... I added "final ot" to the above 2 fixes: if ((s != null) && ((s.trim().toLowerCase() == "final") || (s.trim().toLowerCase() == "final ot"))) { We should convert this whol...