Logfile format changed
----------------------
The format of the logfile has changed.  The previous format:
	Date -- Message [ip address]

Has been replaced by:
	Date\tMessage\tip_address

Where '\t' is a TAB.

DELETE ANY EXISTING LOGFILE CREATED WITH DVDDBP OR OPENDB BEFORE
0.31RC1.

Logfile.php limitations
-----------------------

The current limitation for performance is 4000 characters per line
only.  The functions/logging.php logfile.php script will cut off
any excess characters over 4000, before writing log entry!

Logfile Access
--------------

The logfile.php script has been heavily augmented by Marc Powell
to provide a very useful source of information about activities
occuring against your site.  It now includes colour context
highlighting, etc.

Web server configuration
------------------------

Secure the log directory via Web Server configuration.  For
example, this is my Apache 1.3.x configuration for Opendb.
I have secured the /opendb/log virtual_location with the
second directive.
	
Alias /opendb /opt/opendb
<Location /opendb>
  Options Indexes FollowSymLinks
  order deny,allow
  deny from all
  allow from all
</Location>
 
<Location "/opendb/log/">
order deny,allow
deny from all
</Location>