======================================================================
Installation is complete.  Questions are comments should be directed
to the timesheet mailing list, <timesheet@onshore.com>.

CGI-EXECUTION: 

Be sure to have cgi execution enabled for the timesheet installation
directory.  If you are running apache, you can do so by adding the
following stanza to your access.conf.  Replace "<APPROOT>/timesheet"
with the relative path to the timesheet application.

<Directory <APPROOT>/timesheet > 
  Options +ExecCGI
  AddHandler cgi-script .cgi
</directory> 

POSTGRESQL: 

Make sure, too, that postgres is running.  On a Linux distribution
that uses SysV style init scripts, the command to start will 
be along the lines of "/etc/rc.d/init.d/postgresql start". 

PostgreSQL needs to be listening on a TCP/IP socket for onShore TimeSheet
to function properly.  By default, Debian and RedHat do not have postgres
doing so. For Debian, edit /etc/postgresql/postmaster.init, uncomment
the PGALLOWTCPIP line and change the 'no' to 'yes' so it looks
like this:
  PGALLOWTCPIP=yes

To enable for RedHat the important line in /etc/rc.d/init.d/postgresql
reads as follows:
  su postgres -c '/usr/bin/postmaster -S -D/var/lib/pgsql'

postmaster needs to be started with the "-i" switch to 
have it listen for IP conections, so modify accordingly: 
  su postgres -c '/usr/bin/postmaster -i -S -D/var/lib/pgsql'

For more details, see postmaster(1)

You have two accounts automatically created, 'admin' and 'guest'.
Use these accounts to log into to onShore TimeSheet.  Their passwords
are the same as their user names.  You should definately change
the admin password, and probably delete the guest user.

======================================================================
