Hi All,
I just wanted to share my findings on an issue I have been experiencing after upgrading from 1.12.x to 1.17.2.
Server Information
osTicket Version v1.17.2 (8fbc7ee) — Up to date
Web Server Software Apache
MySQL Version 10.4.26
PHP Version 8.1.13
PHP Settings
cgi.fix_pathinfo "1" is recommended if AJAX is not working
date.timezone Europe/Amsterdam
The upgrade went without any problems. After the upgrade, Agents were not able to acquire any locks on tickets (or so the error messages kept indicating:
(e.g. when trying to resolve/close a ticket)
After digging around the internet, this appears to be a time-zoning issue, but I could not find a solution.
I checked the "Default Time Zone" setting in OsTicket to be Europe/Amsterdam, i.e. the same as the PHP timezone .
SELECT @@GLOBAL.time_zone, @@SESSION.time_zone also both returned Europe/Amsterdam.
I observed however, that entries in the ost_lock
table were always 1 hour earlier than my current time.
With 'Collision Avoidance Duration' set to 3 minutes, these locks seemed to be expired already at the time of creation.
For me, setting the 'Collision Avoidance Duration' to 63, fixes the problem (for now).
The cause, I think (in my case):
the MySQL system_time_zone is different from the GLOBAL, and SESSION timezone
In PHPMyAdmin, I ran:
select @@system_time_zone, @@GLOBAL.time_zone, @@SESSION.time_zone
, returns:
@@system_time_zone @@GLOBAL.time_zone @@SESSION.time_zone
UTC Europe/Amsterdam Europe/Amsterdam
UTC, and 'Europe/Amsterdam' differ by 1 hour, so my guess is that the os_lock time entries are compared somewhere with different timezone settings. I wasn't able to pinpoint this in the php files though (I am not a php developer)
Hopefully this analysis is helpful in finding the underlying issue, and fixing it.
Kind regards,
Vincent