[kronolith] kronolith 2.0 conf.php

Jason Rust jrust at rustyparts.com
Mon Jan 5 08:45:41 PST 2004


On 2004.01.02 14:19:13 +0000, Adrian DeBoer wrote:
> List:
> 
> can someone post their conf.php (you must be using
> kronolith 2.0 CVS version) for me to see??

See attached file.
-Jason
-------------- next part --------------
<?php
/**
 * Kronolith Configuration File
 *
 * This file contains global configuration settings for Kronolith. Values
 * may be safely edited by hand. Use conf.php.dist as a reference.
 *
 * Strings should be enclosed in 'quotes'.
 * Integers should be given literally (without quotes).
 * Boolean values may be true or false (no quotes).
 *
 * $Horde: kronolith/config/conf.php.dist,v 1.36 2003/01/27 21:27:53 chuck Exp $
 */


/**
 ** Calendar Driver Settings
 **/

// What calendar backend is being used? Right now, the only options are
// 'mcal' and 'sql', but others may appear at some point in the future.
$conf['calendar']['driver'] = 'sql';

// What MCAL driver is being used? 'mstore' is the local file driver,
// and is the only one with extensive testing. There is also an ICAP
// driver, and theoretically an ICAP server, but Kronolith has not
// been tested with them.
// $conf['calendar']['params']['driver'] = 'mstore';

// The mstore driver requires a username and a password that is in
// /etc/mpasswd in order to access local calendars.
// $conf['calendar']['params']['username'] = 'horde';
// $conf['calendar']['params']['password'] = 'foobar';

/**
 * This is an example configuration for an sql driver, in this case MySQL.
 * The default SQL connection details are pulled from the horde-wide
 * SQL connection configuration.
 *
 * The old example illustrates how to use an alternate database
 * configuration.
 */
// New Example:
$conf['calendar']['params'] = array_merge($conf['sql'], array('table' => 'kronolith_events'));

// Old Example:
// $conf['calendar']['params']['phptype'] = 'mysql';
// $conf['calendar']['params']['hostspec'] = 'localhost';
// $conf['calendar']['params']['username'] = 'horde';
// $conf['calendar']['params']['password'] = '*****';
// $conf['calendar']['params']['database'] = 'horde';
// $conf['calendar']['params']['table'] = 'kronolith_events';
// $conf['calendar']['params']['charset'] = 'iso-8859-1';


/**
 ** Metadata Settings
 **/

// If this is true, then an array of keywords will be read from
// config/keywords.php and you will be able to assign any or all of
// them to events.
$conf['metadata']['keywords'] = false;


/**
 ** Menu settings
 **/

// Should we display a Import/Export link in the Horde application
// menus?
$conf['menu']['import_export'] = true;

// Should we display a Print link in the Horde application
// menus?
$conf['menu']['print'] = true;

// This is an array of applications (using the names defined in
// horde/config/registry.php) to include links to in the menubar. An
// example providing a link to Turba (an addressbook program) would
// be: $conf['menu']['apps'] = array('turba');
$conf['menu']['apps'] = array();


More information about the kronolith mailing list