Error:
Code: Select all
Event was not found at /var/cache/zoneminder/events/5/2022-04-03/101303. It is unlikely that playback will be possible.
Local end time of event shows in the zm gui as 04/03/22 20:08:53, however in UTC, it would be one day ahead
Code: Select all
root@server-0:/var/cache/zoneminder/events/5/2022-04-04# ls -la 101303
total 19246
drwxr-xr-x 2 www-data www-data 3 Apr 4 03:09 .
drwxr-xr-x 56 www-data www-data 54 Apr 4 04:43 ..
-rw-rw-r-- 1 www-data www-data 17055132 Apr 4 03:09 101303-video.mp4
mariadb docker container uses TZ environment variable:
Code: Select all
TZ=America/Los_Angeles
and in the ZM database a query for the timezone settings correctly returns the same zone:
select Value from Config where Name= "ZM_TIMEZONE";
Code: Select all
+---------------------+
| Value |
+---------------------+
| America/Los_Angeles |
+---------------------+
php.ini contents:
Code: Select all
[Date]
date.timezone = America/Los_Angeles