<?php
/* __ Global settings _____________________________________________________ */
define('ATTACHMENTS_BASE_DIR', "/cm/attachments/");
define('TRIGGERS_DIRECTORY',"/cm/triggers/");
define('ENABLE_LOG_ACCESS', 'NO');
/* __ Database configuration ______________________________________________ */
/*
* Note for PostgreSQL servers:
* if server is running on localhost and only accepting unix sockets
* connections, leave DB_SERVER empty. If you want to specify "localhost",
* be sure to run the postmaster with -i option. Refer to Postgres doc
* for more details on its tcp/ip setup.
*/
/*
* Uncomment the line for the database server you are using, and comment out
* the rest.
*/
define("DATABASE_IMPLEMENTATION", 'database-postgres.php');
//define("DATABASE_IMPLEMENTATION", 'database-mysql.php');
/*
* Following parameters are independent of the selected database backend.
* Fill them with your local settings.
*/
define("DB_SERVER", "");
define("DB_DATABASE", "ttstest");
define("DB_USER", "ttstest");
define("DB_PASS", "");
?>