Installation is pretty easy.

1. General configuation
=======================
edit the config.php and populate the SITENAME, SITEURL, HELPEMAIL and LOGOURL
accordingly.


2. Database setup
=================
Add the "changelog" table (see doc/install/db.sql) to your MySQL database.

For security changelog needs two different mysql users with different
privileges.  A read-write user that has INSERT and UPDATE access to the table
and a read-only user that only has SELECT.  You could call these users clwrite
and clread.

add the database server ip and database name, these usernames and their passwords to the config.php
(see the SQLSERVER, DBNAME, RO_USER, RO_PASS, RW_USER, RW_PASS definitions)


3. Apache setup
===============
Setup an alias for the dynamic entires directory:
 AliasMatch /entries.* "/home/www/changelog/index.php"
This sends any requests for anything inside the "/entries" directory to the
index.php.

Configure the auth/ directory .htaccess config file to point at your Apache htpasswd
database (containing your changelog usernames and passwords).


4. User setup
=============
Add your users and passwords to the configured Apache htpasswd database.
That's all that's needed.


