It looks like there may be a problem with the definition of path to PEAR in config.php, and a solution (to not use capitalized letters).
// Set include path for PEAR and its modules, which we include in the distribution.
//
set_include_path(realpath(dirname(__FILE__).'/lib/PEAR') . PATH_SEPARATOR . get_include_path());
Should we change it to this?
set_include_path(realpath(dirname(__FILE__).'/lib/pear') . PATH_SEPARATOR . get_include_path());
> Hi, I have a question or comment for Anuko. Here it is: ...
Anuko Time Tracker: I've installed the Time Tracker on my private network and it can't find the pear library.
In config.php the pear path is in UPPERCASE whereas the directory's name is in lowercase so it can't find the pear library (unix systems).
After correcting this problem it works fine.