vote up 4 vote down star
1

Is it possible on a web server to determine the users local time and timezone when they sent the request?

Could it be done using javascript to capture it and post it back to the server?

My company want to track how many users use our site outside of office hours (no I dont really know why either!).

Thanks.

flag

Good question ;) +1 – Sergio Feb 3 at 17:23
Thanks everyone, I realise that its dependant on the user having their clock set correctly. – Si Keep Feb 3 at 17:27

6 Answers

vote up 6 vote down check

You need to put the client's JavaScript time into a hidden field, and assume their clock is set properly.

myTime = new Date() >> Tue Feb 03 2009 12:24:28 GMT-0500 (Eastern Standard Time)
link|flag
Beat me to the punch :) – Miyagi Coder Feb 3 at 17:23
You also have to assume that they haven't disabled Javascript... – Graeme Perrow Feb 3 at 18:04
vote up 2 vote down

You could load a date into a hidden field using JavaScript:

var newDate = new Date();
hiddenFieldName.value = newDate.toLocaleString();

Then on the postback to the sever grab that field.

link|flag
Do yourself a favor and use newDate.toUTCString() instead. toLocaleString gives you a string in the users language. – some Feb 3 at 21:37
vote up 1 vote down

JavaScript is indeed the way to go.

Fortunately the web has lots of sample code you can use. This page seems pretty comprehensive.

It should be noted that knowing someone's current offset is not the same as knowing their time zone, but it's probably enough for your purposes :)

link|flag
vote up 0 vote down

Well you could read the browser's local time with JavaScript:

var now = new Date();

Then you could post it to the server using XmlHttpRequest or a hidden form field...

link|flag
vote up 1 vote down

Certainly you could embed a JS derived client timestamp and send it back appended to some other request, but it's completely unreliable since the user could set their client time to anything they want, and it requires that second request which could be slightly abusive, or technically awkward to ensure. A lot of implementations will do this by fire-and-forgetting an AJAX request for a text file, or adding a single blank pixel image to the page.

You could try and derive a similar metric based on first requests and geolocating an IP - location and GMT timestamp giving you a local time - but that might be expensive if you haven't got an IP/Geo database already :)

link|flag
Thats a good point about the postback, unless I use AJAX it won't work for initial requests. – Si Keep Feb 3 at 17:30
and it won't work at all for noscripts – annakata Feb 3 at 17:44
vote up 1 vote down

You should consider reverse DNS resolution of your existing web server logs. You can then use geocoding to guess user's time zone (and their local time relative to your web server's time).

You would not need to write new JavaScript code, write custom server-side code to log user times, and then deploy an updated website.

This Perl script might be a helpful example: Perl Script that Does Bulk Reverse-DNS Lookups

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.