andrew867
andrew867
[http://php.net/manual/en/migration70.incompatible.php](http://php.net/manual/en/migration70.incompatible.php) **Changes to the handling of indirect variables, properties, and methods** Indirect access to variables, properties, and methods will now be evaluated strictly in left-to-right order, as opposed to the...
If you get a "fatal error: 'freetype/fterrors.h' file not found" error: ln -s /usr/local/include/freetype2 /usr/local/include/freetype
What is your php.ini `date.timezone` option currently set as? What about the `config.inc.php` options `$use_client_tz` and `$use_server_tz`? I have both `config.inc.php` options set to `no`, and my timezone is set...
Also I'll commit an addition to `config.inc.php` which will allow the system to override the php.ini timezone in case you can't modify it.
Take a look at this commit and see if it fixes your issue 4e76ac5d1e951768d3149242eb1985219ba6b4fb if it does then fix `date.timezone` in your php.ini :)
While you're at it could you add an echo statement to the report your running: `echo date_default_timezone_get();` and see if the timezone matches what you've selected. Oh and what do...
Can you send a screenshot of the `info` database table? Mine seems to be working correctly with punches stored in the database as GMT unix timestamps (I have both `config.inc.php`...
I remember having a lot of trouble in the past getting timezones working properly in timeclock. Here's a quick description of what happens: - If `$use_server_tz` is set then timeclock...
I agree, it's a pretty big bug. What should happen is the punch should be stored in GMT with another column specifying what timezone it was punched from (to keep...
I've opened #18, #19, and #20 outlining the issues we just found and potential fixes. Feel free to assign them to yourself if you feel like fixing them. I had...