Search found 99 matches
- Fri Sep 20, 2019 2:25 am
- Forum: Time Tracker
- Topic: Anuko 1.19.10.5084 does not work: access denied
- Replies: 2
- Views: 8598
Re: Anuko 1.19.10.5084 does not work: access denied
1.19.10.5084 works just fine at https://timetracker.anuko.com currently. And at some point in time it was running 1.17.14.3974. Do the upgrade properly, as documented, or seek someone's help, as there are plenty of people willing to do migration for a small fee. If you believe something is broken pl...
- Tue Sep 17, 2019 10:15 pm
- Forum: Time Tracker
- Topic: Upgraded database gives errors
- Replies: 1
- Views: 6453
Re: Upgraded database gives errors
Try to use correct FILE_STORAGE_URI in config.php
or disable the Attachments plugin.
Code: Select all
define('FILE_STORAGE_URI', 'https://www.anuko.com/files/');
- Tue Dec 15, 2015 2:58 am
- Forum: Time Tracker
- Topic: Returning to Login (after logging in)
- Replies: 14
- Views: 15376
Re: Returning to Login (after logging in)
Try to put this in your config.php to see if it prints anything on top of the page (above logo) when it happens.ferbland wrote:When I try to connect the first time with admin/secret, I'm redirected on login page.
I have activated PHP logging but have no error in the log file.
Code: Select all
define('AUTH_DEBUG', true);
- Tue Dec 15, 2015 2:26 am
- Forum: Time Tracker
- Topic: Returning to Login (after logging in)
- Replies: 14
- Views: 15376
Re: Returning to Login (after logging in)
An other question, how to download older 1.9.xxx version I can find in change.log ? I only get 1.5.xxxx versions from anuko site. Thank's in advance. Download it just like any other archived version. For example, this link will get you 1.9.0.3314. https://www.anuko.com/download/time_tracker/archive...
- Tue Dec 15, 2015 2:20 am
- Forum: Time Tracker
- Topic: Disable mobile page
- Replies: 2
- Views: 3375
Re: Disable mobile page
Comment out line #46 in index.php, which determines whether access is done via a mobile browser. // $mobileBrowser = ... if ($mobileBrowser) { Or add $mobileBrowser = false; line before a redirect, which happens in the if block below. $mobileBrowser = ... $mobileBrowser = false; if ($mobileBrowser) ...
- Fri Oct 30, 2015 3:55 am
- Forum: Time Tracker
- Topic: PHP Version
- Replies: 3
- Views: 4233
Re: PHP Version
Just confirmed that the latest timetracker 1.9.11.3374 works with PHP 7.0.0 RC6, too. Although you may have to change DSN from mysql to mysqli.
Same environment as above, all components 64-bit.
Same environment as above, all components 64-bit.
- Thu Oct 29, 2015 3:34 pm
- Forum: Time Tracker
- Topic: PHP Version
- Replies: 3
- Views: 4233
Re: PHP Version
PHP 5.6 is just fine.
Works for me, anyway, with the following components:
Windows 7 with all updates (except telemetry).
Apache 2.4.17
MySQL 5.7.9.0
PHP 5.6.14
Just tried it, see no issues.
Works for me, anyway, with the following components:
Windows 7 with all updates (except telemetry).
Apache 2.4.17
MySQL 5.7.9.0
PHP 5.6.14
Just tried it, see no issues.
- Sat Oct 03, 2015 12:26 am
- Forum: Time Tracker
- Topic: Report to show users not logged in
- Replies: 8
- Views: 7046
Re: Report to show users not logged in
Yes, but I don't even know where to look just to see how other reports are coded. I'm not much of a coder, I'm a sysadmin :oops: Look at WEB-INF/lib/ttReportHelper.class.php - this file contains the functions that get the data for reports. The UI is done in reports.php, report.php and their templat...
- Thu May 21, 2015 3:47 am
- Forum: Time Tracker
- Topic: How to display billable status on reports to export?
- Replies: 3
- Views: 4346
Re: How to display billable status on reports to export?
I have time tracker set up to record billable status on time entries. When I create a report for a specific week, I don't see how I can view and then export data on whether a time entry is billable. Dos anyone know how to do this? Thanks. You can use the Billable field on the reports.php page to fi...
- Wed May 13, 2015 1:59 pm
- Forum: Time Tracker
- Topic: reports from inactive users
- Replies: 9
- Views: 7701
Re: reports from inactive users
I inserted a checkbox in the report page and when the report is generated, i test the checkbox. If it checked, then i exclude the SQL "user where part". If you don't check for user ids in the where part, then the reporting may incorrectly report users from other teams, when you have other users (te...
- Tue May 12, 2015 5:39 pm
- Forum: Time Tracker
- Topic: reports from inactive users
- Replies: 9
- Views: 7701
Re: reports from inactive users
I looked in the code and it does not seem like the current reporting allows to report on deactivated users. You have an active user list on the reports page, and the reporting is limited to what you select in there. It is of course possible to modify the code and user interface to display additional...
- Tue May 12, 2015 5:14 pm
- Forum: Time Tracker
- Topic: Hide users list on client reports view
- Replies: 1
- Views: 2751
Re: Hide users list on client reports view
Try using the latest version of Time Tracker, it is now filtering both projects and users that are displayed on the reports.php page down to only relevant (assigned).
- Fri Apr 17, 2015 8:16 pm
- Forum: Time Tracker
- Topic: Clients role, only Reports of allocated Projects possible?
- Replies: 9
- Views: 7448
Re: Clients role, only Reports of allocated Projects possibl
As a quick fix, you can change line #95 in reports.php, so that it looks like the first uncommented line in the fragment below. // Add controls for projects and tasks. if ($user->canManageTeam() /*|| $user->isClient()*/) { $project_list = ttProjectHelper::getProjects(); // Manager and co-managers ca...
- Fri Apr 17, 2015 6:53 pm
- Forum: Time Tracker
- Topic: Handling of overtime hours
- Replies: 3
- Views: 5521
Re: Handling of overtime hours
If your overtime is based on weekly worked hours, then one could do this: 1) Add 3 fields to tt_log table, such as: reg_hours - regular hours component overtime_hours - overtime component double_overtime_hours - double overtime component 2) Write additional code that to automatically re-calculate th...
- Thu Jan 01, 2015 4:12 pm
- Forum: Time Tracker
- Topic: blank screen on login
- Replies: 1
- Views: 3103
Re: blank screen on login
The first thing to check is your web server error log...