<?php
/* lamos configuration file */
define("LMS_NAME", "lamos");
/* set the URL of this installation */
define("LMS_URL", "http://www.example.test/lamos/");
/* database configuration */
define("DB_HOST", "sql.example.test");
define("DB_DB", "db");
define("DB_USER", "user");
define("DB_PASS", "password");
define("DB_TYPE", "mysql");
/* set the language (currently available: en, de) */
define("LMS_LANG", "en");
/* set default values for display options */
define("MAXDEPTH", 1);
define("TOPLIST", 30);
/* All values below should not be touched in most cases !!! */
/* debug flag, set to TRUE to enable debug output */
/* WARNING: don't use this on production systems */
define("DEBUG", FALSE);
/* database tables names to use */
define("T_USER", "lms_user");
define("T_LINK", "lms_link");
define("T_CAT", "lms_cat");
define("T_STAT_LINK", "lms_stat_link");
define("T_STAT_CAT", "lms_stat_cat");
/* internal constants */
define("CAT_SORT_STEP", 32768);
define("CAT_SORT_MAX", 2147483647);
?>