Is there a standard way for a web server to determine what time zone offset a user is in?
From an HTTP header or part of the user-agent description, perhaps?
|
13
|
|
|||
|
|
|
|
timezone.js:
timezone.php:
When you want to use it add onLoad="ajaxpage();" to the body tag and it should cause the timezone to be stored in the PHP session variable $_SESSION['time'] Edit: P.S. This is untested. |
|||
|
|
|
|
I would think that you could get an approximate idea from their IP address. Anyone know of any services that will match IP to geographic location, or a periodically updated database? |
||
|
|
|
|
There are no HTTP headers that will report the clients timezone so far although it has been suggested to include it in the HTTP specification. If it was me, I would probably try to fetch the timezone using clientside JavaScript and then submit it to the server using Ajax or something. |
||
|
|
|
|
Javascript is the easiest way to get the client's local time. I would suggest using an XMLHttpRequest to send back the local time, and if that fails, fall back to the timezone detected based on their IP address. As far as geolocation, I've used MaxMind GeoIP on several projects and it works well, though I'm not sure if they provide timezone data. It's a service you pay for and they provide monthly updates to your database. They provide wrappers in several web languages. |
||
|
|
|
|
The most popular (==standard?) way of determining the time zone I've seen around is simply asking the user ximself. If your website requires subscription, this could be saved in the users' profile data. For anon users, the dates could be displayed as UTC or GMT or some such. I'm not trying to be a smart-alec. It's just that sometimes some problems have finer solutions outside of any programming context. |
||||
|
|
|
The magic all seems to be in
That's cool, I didn't know about that. Does it work in IE, etc? From there you should be able to use JS to ajax, set cookies, whatever. I'd probably go the cookie route myself. You'll need to allow the user to change it though. We tried to use geolocation (via maxmind) to do this a while ago, and it was wrong reasonably often - enough to make it not worth doing, so we just let the user set it in their profile, and show a notice to users who haven't set theirs yet. |
||
|
|
|
|
Well, lucky for you that answer can be found on our very own stackoverflow website: http://beta.stackoverflow.com/questions/1033/ip-to-country spoiler: http://www.hostip.info/use.html |
||
|
|
|
|
If you happen to be using OpenID for authentication, Simple Registration Extension would solve the problem for authenticated users (You'll need to convert from tz to numeric). Another option would be to infer the time zone from the user agent's country preference. This is a somewhat crude method (won't work for en-US), but makes a good approximation. |
|||
|
|
|
|
I determine timezone with Geolocation and using the Geonames APIs. |
||
|
|
|
|
Ask the user. If you get the time zone from the user's computer, and it is set wrong, then what? |
||
|
|
|
|
new Date().getTimezoneOffset()/60; |
||
|
|
