Yet Another PHP Time Card https://git.point808.com/Point808/yaptc
Go to file
2015-02-27 15:41:16 -05:00
includes Updated Pure to 0.6, added pagination, don't think I broke anything... 2015-02-26 12:44:21 -05:00
lang Updated Pure to 0.6, added pagination, don't think I broke anything... 2015-02-26 12:44:21 -05:00
lib Updated Pure to 0.6, added pagination, don't think I broke anything... 2015-02-26 12:44:21 -05:00
.gitignore Added gitignore for config.inc.php 2015-02-12 00:50:25 -05:00
config.inc.php.example Updated Pure to 0.6, added pagination, don't think I broke anything... 2015-02-26 12:44:21 -05:00
index.php MAJOR updatesgit add --all 2015-02-25 16:01:50 -05:00
LICENSE Updated README and added licenses for other software in root 2015-02-12 00:48:55 -05:00
LICENSE (fpdf) user deletion fixed, license added for fpdf even though not using 2015-02-20 01:57:34 -05:00
LICENSE (phpass) Updated README and added licenses for other software in root 2015-02-12 00:49:26 -05:00
LICENSE (pure) Updated README and added licenses for other software in root 2015-02-12 00:49:26 -05:00
login.php MAJOR updatesgit add --all 2015-02-25 16:01:50 -05:00
logout.php MAJOR updatesgit add --all 2015-02-25 16:01:50 -05:00
manualpunch.php Updated Pure to 0.6, added pagination, don't think I broke anything... 2015-02-26 12:44:21 -05:00
mysql.sql user deletion fixed, license added for fpdf even though not using 2015-02-20 01:57:34 -05:00
profile.php Updated Pure to 0.6, added pagination, don't think I broke anything... 2015-02-26 12:44:21 -05:00
README.md update readme 2015-02-27 15:41:16 -05:00
reports.php Updated Pure to 0.6, added pagination, don't think I broke anything... 2015-02-26 12:44:21 -05:00
users.php Updated Pure to 0.6, added pagination, don't think I broke anything... 2015-02-26 12:44:21 -05:00

YAPTC

About:

Josh North - josh.north@point808.com - 2015-02-09
This is a basic timekeeping application that is steadily getting more complex. It may or may not work for you but I'm pretty proud of it.

License

Free for use and modification. Credit is appreciated if you do anything with it but nothing is required.

Credits

Status:

This script is (as of today, 2015-02-26) in fully-working beta status.

Theory:

We track time in this application by punching start and end times on each record. Times are calculated using MySQL math functions in the queries. This allows us to be more flexible with granularity and time zones, etc etc. Everything else is mostly in line with standard PHP web apps.

Requirements:

  • PHP (I used PHP 5.5.9)
  • MySQL (I used MySQL 5.5.41)
  • Web server (I used NGINX 1.4.6)

Setup Assumptions:

  • You have the above requirements met.
  • You are somewhat familiar with editing PHP config files (I hope).
  • I assume you have git installed - if not, rather than using the git-pull, download the zip from my git page.

Setup Instructions:

  1. Go to your webserver root as a user with write privileges (i.e. /usr/share/nginx/html)
  2. Decide what sub-directory you want the app in. I use "timecard" here.
  3. Run the following git clone https://github.com/joshnorth/yaptc.git timecard
  4. t