LC server, on-rev and time zones

matthias_livecode_150811 at m-r-d.de matthias_livecode_150811 at m-r-d.de
Wed Sep 6 09:39:12 EDT 2023


You could try to set the $TZ variable. I did not try on On-Rev/LivecodeHosting, but on a HostM Server which also has Livecode Server installed.

This script here for example would set the timezone first to Germany  and outputs the current time and then for New York.


< ? l c 
 put "Europe/Berlin" into $TZ
 set the twelvehourtime to false
put the time
 put "<br>"
 put "America/New_York" into $TZ
 set the twelvehourtime to true
 put the time
?>

> Am 06.09.2023 um 15:22 schrieb jbv via use-livecode <use-livecode at lists.runrev.com>:
> 
> Hi list,
> 
> How do you handle different time zones in server scripts ?
> For example, I and my clients are in Europe, so dates and
> times need to be consistent with the local time zone.
> But on-rev servers are located in the US East coast, so
> there is presently a 6 hours difference.
> Furthermore, switching from summer time to winter time
> (and back) occur at different dates in Europe and North
> America...
> How do you guys manage to keep everything consistent
> all year round ?
> 
> Thanks you in advance.
> jbv
> 
> _______________________________________________
> use-livecode mailing list
> use-livecode at lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode




More information about the use-livecode mailing list