User login

MetaTraffic 2.0 Boxshot

changing Server Time

Posted by shaywood [February 26, 2004]

I want the reports to reflect my local time, instead of where the server is actually at (3 times zones away). Can I make this adjustment?

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