environment.php 905 Bytes
<?php

/**
 * $Id$
 *
 * Stores the environment settings for the DMS application
 *
 * Copyright (c) 1999-2002 The Owl Project Team
 * Licensed under the GNU GPL. For full terms see the file COPYING.
 */
 
// ldap settings
$default->ldapServer = "192.168.1.9";
$default->ldapRootDn = "o=Medical Research Council";
// Database info
$default->owl_db_user           = "root";
$default->owl_db_pass           = "";
$default->owl_db_host           = "localhost";
$default->owl_db_name           = "dms";
// email settings
$default->owl_email_server = "mail.jamwarehouse.com";
$default->owl_email_from = "owl@spare2.jamwarehouse.com";
$default->owl_email_fromname = "owl";
$default->owl_root_url		= "/dms";
// Directory where owl is located
$default->owl_fs_root		= "/usr/local/www/owl/dms";
// Directory where The Documents Directory is On Disc
$default->owl_FileDir           =  "/usr/local/www/owl/dms";

?>