array( 'host' => '{MYSQL_HOST}', 'database' => '{MYSQL_DB}', 'user' => '{MYSQL_USER}', 'password' => '{MYSQL_PASS}', 'encoding' => '{DB_ENCODING}', 'prefix' => '{MYSQL_PREFIX}', 'extension' => '{DB_EXTENSION}' ), 'nolock' => {NOLOCK}, // (bool) Flag to not lock tables 'sequenceTable' => '', // (string) will be set later in startup! 'haltBehavior' => 'report', // (string) Feasible values are 'yes', 'no' or 'report' 'haltMsgPrefix' => (isset($_SERVER['REQUEST_URI'])) ? $_SERVER['REQUEST_URI'] . ' ' : '', 'enableProfiling' => false, // (bool) Flag to enable profiling ); /* * Backward compatible database settings. */ /* The prefix for all DZIRCMS system tables, usually "admin" */ $cfg['sql']['sqlprefix'] = $cfg['db']['connection']['prefix']; /* The host where your database runs on */ $contenido_host = $cfg['db']['connection']['host']; /* The database name which you use */ $contenido_database = $cfg['db']['connection']['database']; /* The username to access the database */ $contenido_user = $cfg['db']['connection']['user']; /* The password to access the database */ $contenido_password = $cfg['db']['connection']['password']; $cfg["database_encoding"] = $cfg['db']['connection']['encoding']; $cfg["database_extension"] = $cfg['db']['connection']['extension']; $cfg["nolock"] = $cfg['db']['nolock']; $cfg["is_start_compatible"] = {START_COMPATIBLE}; ?>