1
vote
2answers
22 views
PHP/MySQL Timezone Clarification
Hello all,
I'm currently having an issue wrapping my brain around the notion of converting my MySQL time to a specific timezone, depending on the user's settings.
All of my MySQL …
0
votes
5answers
78 views
TimeZones in Java
I am allowing users on my web app to schedule events based on time zones of their choice.
I want to present a good list of time zones to the end user and then convert it easily to …
0
votes
3answers
41 views
how to find that user has changed time in iphone sdk?
I have created an application.in the app i start a countdown timer and save current date as double value in database also i save end date according to countdown timer .after closin …
0
votes
2answers
25 views
Converting/Searching GETUTCDATE()
If I store all my dates in SQL Server 2005 as GetUtcDate() what is the best way to search on these date fields. I'm using C# so should i convert the date submitted by the user to U …
0
votes
3answers
29 views
how to get tz_info object corresponding to current timezone?
Is there a cross-platform function in python (or pytz) that returns a tzinfo object corresponding to the timezone currently set on the computer?
environment variables cannot be co …
1
vote
2answers
43 views
/usr/share/zoneinfo epic fail
I have just, in my groggy morning state, reversed & confused the arguments to ln, replacing /usr/share/zoneinfo/America/Toronto with a link to the non-existant /etc/localtime, …
2
votes
1answer
94 views
How to get local time zone name from Ruby in the same way as Java does?
I need to find out local machine time zone name from Ruby (from the TZInfo::Timezone.all_identifiers list of values). I need it so that I could set correctly Oracle database sessio …
0
votes
1answer
59 views
How to convert every time zone in GMT +5.30?
I am creating an application. I am running a countdown timer and saving time into a database by converting time into a floating point value (double). Suppose I start the timer at 2 …
2
votes
1answer
50 views
Why does DateTime::Format::W3CDTF return 0 for Europe/London dates outside of British Summer Time?
Ever since British Summer Time ended in the UK last week my application has been seeing a very interesting bug. Here's an isolated Perl script which demonstrates the issue:
#!/usr …
0
votes
2answers
95 views
Timestamp comparison in MySQL and PHP ( UTC, +0000, Timezones )
I'm trying to determine whether a string that represents the date and time, given in a JSON Twitter feed is within a range of timestamp columns in MySQL.
Here's the example string …
3
votes
4answers
100 views
The best way to synchronize client-side javascript clock with server date
I have a task to show digital clock (with minutes precision) on HTML page in some fixed timezone (MSK or MSD - depending on current date). I'd like to avoid relying on client syste …
2
votes
3answers
53 views
user datetime setting as GMT, how to convert date to their localized setting?
In my users setting I have a dropdown with all the GMT dates for the user to select.
In c#, how would I convert a datetime stored in the database to their GMT time?
The time stor …
0
votes
4answers
41 views
Problem in DATE AND TIME
I am using date() function it getting the date and time as per my given format but the time its showing me is 4 hours forward than my current local machine time:
This is my code
e …
1
vote
0answers
28 views
Bugzilla Error : “Cannot determine local timezone”
Hi Everyone,
After I installed Bugzilla on my LAN it works great... the problem is when I try to commit a bug it gives me an internal error "cannot determine local time zone"
I h …
0
votes
0answers
33 views
PHP timezone discrepancy - America/New_York = CDT?
How does this make sense?
date_default_timezone_set("America/New_York");
echo date("e"); //output "America/New_York"
echo date("T"); //output "CDT"
Is there somewhere that I can …
