There are a couple ways to do this. The easiest would be to adjust the time that is logged and add (or subtract) hours to the date so it logs your local time. On line 131 of the class asp file, change it to look like this:
strDateTime = DateAdd("h", 3, Now())
The above example would be if you want to add 3 hours to the server time. Replace the 3 with a -3 if you wanted to subtract 3 hours.
changing Server Time
There are a couple ways to do this. The easiest would be to adjust the time that is logged and add (or subtract) hours to the date so it logs your local time. On line 131 of the class asp file, change it to look like this:
strDateTime = DateAdd("h", 3, Now())
The above example would be if you want to add 3 hours to the server time. Replace the 3 with a -3 if you wanted to subtract 3 hours.
Regards,
~Chad