The Timezone should be correct detected. In this case "Europe/Berlin"
The Timezone from the Browser is detected as "Europe/London"
We already check the PHP and Webserver configuration. Any relativ configuration already set for "Europe/Berlin"

Open the User Preferences and check the Timezone from the Browser detection.
Version used (icinga2 --version): r2.9.2-1
System information:
Platform: Red Hat Enterprise Linux Server
Platform version: 7.5 (Maipo)
Kernel: Linux
Kernel version: 3.10.0-862.2.3.el7.x86_64
Architecture: x86_64
Operating System and version: RHEL 7 3.10.0-862.2.3.el7.x86_64
icinga2 feature list):api checker command ido-mysql influxdb livestatus mainlog notification perfdataDid you chance the timezone in the php.ini? At the beginning this was also our fault. After that ist was also correct.
There is a part [Date] with the Parameter date.timezone. Here you can write your Zone.
.
After restart of php everyhting was fine.
I don't now if icingaweb2 can take that Information from the browser yet. But when you take a look into the documentation https://icinga.com/docs/icingaweb2/latest/doc/02-Installation/ there is still written: _Most important for icingaweb2 is date.timezone._
Hi Stevie,
thanks for your reply.
As mentioned above, we already check that.
Our current configuration looks like that:
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = Europe/Berlin
no problem.
Another thing we got was with php-fpm. It has is it own php.ini. e.g. we have one in /etc/php.ini and one in /etc/opt/rh/rh-php71/php.ini
If this is also not the reason we have to wait for an answer from the developer.
Good point, with PHP FPM you'd need to edit the correct php.ini for this.
Hi stevie (again ;) ),
in the "normal" php.ini under /etc/ and /etc/opt/rh/rh-php71/ is set the Timezone correctly for "Europe/Berlin."
At the /etc/php-fpm.conf and /etc/opt/rh/rh-php71/php-fpm.conf is no Timezine at all configured.
But when i try to grep the TImezone via CLI....
[root@HOSTNAME ~]#
php-fpm -i | grep -i timezone
"Olson" Timezone Database Version => 0.system
Timezone Database => internal
Default timezone => Europe/Berlin
date.timezone => Europe/Berlin => Europe/Berlin
So, just for my understanding. The "Browser Timezone"(as it is called in the User Preferences) ist not at all from the Browser/Client, but from the Webserver ?
Thanks in advcance :)
@MaBauMeBad you're welcome. That was only from our experience with installing Icingaweb2 and timezones in our environment. Now it's a turn for the developers I think :-)
I just stumbled across this issue too.
For me the timezone in the frontend is reported as Browser (Europe/London) even though all of the remaining time on the entire computer is set to Europe/Berlin, and even in the developer console window I can enter the follwing code and get the correct time (Berlin time that is) reported:
new Date().toLocaleString()
My guess is that the timezone detection is based on the set locale (intl.accept_languages equals en-GB, en-US), instead of the set localtime.
this seems to be quite an old problem?
I'm seeing this issue in all systems I have set up to date, every system shows _Browser (Europe/London)_ as default timezone.
Happens for various OS&icingaweb2 versions:
Ubuntu 14.04 + icingaweb2 2.4.2
Ubuntu 16.04 + icingaweb2 2.6.1
Ubuntu 18.04 + icingaweb2 2.6.1
centOS 7 + icingaweb2 2.6.0
centOS 7 + icingaweb2 2.6.1
All systems have set date.timezone = Europe/Berlin in either php.inior /etc/php/<version>/apache2/conf.d/timezone.ini
Regarding php-fpm (running icingaweb2 inside the nginx container image from Docker library, based on Debian9, locales installed and set to de_DE.UTF-8) I also added php_admin_value[date.timezone] = "Europe/Berlin" to my fpm-pool file /etc/php/7.0/fpm/pool.d/www.conf but I think this will inherit from /etc/php/7.0/fpm/php.ini where I already set date.timezone.
Anyway I don't see how server-side settings should affect browser time zone detection (which looks good in http://browserspy.dk/date.php btw but just is Europe/London in icingaweb2).
We have the same problem but only with the Chrome Browser (Version 70.0.3538.77).
Location is Europe/Berlin but the auto detection is showing "Browser (Europe/London)".
In Firefox, Edge and Internet Explorer the timezone is Europe/Paris.
Icingaweb2 version: Icinga Web 2 Version 2.6.1
Icinga2 version: r2.10.1-1
System information: Debian 9 latest updates
You'are right.
Tested it With IE and Firefox. Both Browser show Paris as TimeZone.
Thank you all!
I think this is still a bug which should be fixed!?
Dito.
Firefox/Chrome/Vivaldi: "Europe/London"
IE/Edge: "Europe/Paris"
no Browser shows the configured "Europe/Berlin" for me
@MaBauMeBad can you please re-open this issue?
Today I had the genius idea of deleting the icingaweb2-tzo cookie (in my browser's dev console) used in these places:
All of a sudden it had the correct timezone.
Can anyone confirm this?
cleared the complete browser data from FF and Vivaldi. Didn't help
@log1-c Please note that I did not say to clear the complete browser data, only this single cookie.
The effect would be the same, wouldn't it?
Anyway, I just deleted only the one cookie and you are partly right: The time zone is than reported as "Europe/Berlin". But as soon as I reload the page it's back on "Europe/London" again.
Re-opening for further discussion on the matter.
Anyway, I just deleted only the one cookie and you are partly right: The time zone is than reported as "Europe/Berlin". But as soon as I reload the page it's back on "Europe/London" again.
Same here.
scratch that, was beeing a bit dumb and was on the second webinterface, where I didn't manually set the time zone.
This is getting quite annoying/confusing, when the deployments in the Icinga Director are "mixed up".
I have set the time zone to Europe/Berlin manually but sometimes this doesn't seem to work!?
image
So I have the latest deployment (made at 14:24:06) further down in the deployment list, as it is displayed in Europe/London time zone...
It did look like a fishy thing for a cookie to store the timezone at all times even if not set via the settings.
As deleting the cookie seems to fix the issue (until next reload at which presumably the cookie is simply set again?), would a minimum fix be to just not set the cookie when not needed?
Is there any solution yet?
Hi,
There is no solution yet but I'll have a look what's going wrong here.
Best,
Eric
I've found it!
The problem is in public/js/icinga/timezone.js:17
You are using Date().getYear() method, which returns 118 right now - number on years since 1900.
This causes wrong DST detection, which causes wrong timezone.
You shoud use Date().getFullYear() in this place
@h0rmiga Good catch, thanks.
Hi all,
Could you please test the related PR and provide feedback whether the issue is fixed for you? You have to remove the icingaweb2-tzo cookie in order to trigger the timezone detection.
Best,
Eric
Replaced the current timezone.js with the fixed one, restarted apache and deleted the cookie.
IcingaWeb2 no shows Europe/Paris as timezone consistently. So I'd say it is working.
@h0rmiga Thank you!
@lippserd It worked for me now!
Thank your very much all !
@lippserd Can you tell me a date when you are planning to release version 2.6.2?
On Wednesday this week.
There seems to be a regression, or problem related to this.
|Icinga Web 2||
|:---|---:|
|Version|2.6.3|
|Firefox||
|:---|---:|
|Version|67.0b10 (64-bit)|
|Locale (as per Intl.Collator().resolvedOptions().locale)|en-GB|
|Timezone (as per Intl.DateTimeFormat().resolvedOptions().timeZone)|Europe/Berlin|
My detected browser settings in My Account are wrong (not reporting Europe/Berlin, but Europe/Paris).
_chc and Icingaweb2 cookies seticingaweb2-announcements and icingaweb2-session cookies seticingaweb2-tzo cookie set鹿Set-Cookie via HTTP and has not reported that to the server yeticingaweb2-tzo cookie鹿: Why even use that cookie in this situation? Everything seems pretty okay and working without it.
Most helpful comment
On Wednesday this week.