How to fix problems with timezones larger than -9.5, +9.5
Page: 1
If you have a problem where you cannot set your timezone correctly (Anything above +9.5 hours does not stick) then use the below suggestion from Hemebond.
The problem is with the database. The "timezone" column in the "companies" table is set to FLOAT(2,1). This is too small. It needs to be FLOAT(3,1).
ALTER TABLE companies MODIFY timezone FLOAT(3,1);
You'll also need to alter the users table.
ALTER TABLE users MODIFY timezone FLOAT(3,1);
The problem is with the database. The "timezone" column in the "companies" table is set to FLOAT(2,1). This is too small. It needs to be FLOAT(3,1).
ALTER TABLE companies MODIFY timezone FLOAT(3,1);
You'll also need to alter the users table.
ALTER TABLE users MODIFY timezone FLOAT(3,1);
Topic is locked. If you have something important to say about issues discussed on this page please write at hi@a51dev.com.



