Tasks-jr

Tasks-jr requires a webserver — Apache2 in this case, PHP and MySQL. The actual setup is pretty simple for the most part. There is only one table in the database for Tasks Jr!

There was an issue with getting iCalendar going correctly. Tasks uses PHP iCalendar to present a calendar view of the task list. The calendar was displaying with holidays, etc. but the dates for the task items were not included. After some investigation of the php code the problem turned out to be the way that the netsNbytes.net website is configured. Tasks Jr is served up via self certified https. The php code that queried the iCalendar couldn’t handle the certificate. So I simply configured it to query the iCalendar on localhost to get around it.


calendar.php</p>

< ?
require_once('objects.php');
...
$URL=$custom->   ical_URL."month.php?cal=".'http://localhost/tasks-jr/ics.php'."&getdate=".date("Ymd");
...
header("Location: ".$URL);
?>

Evaluate Tasks-jr or Tasks Pro for project management is up next…