<?php
/**
* Config file
*
* This file contains database configuration.
*/
defined('_VALID_ACCESS') || die('Direct access forbidden');
/**
* Address of SQL server.
*/
define('DATABASE_HOST','mysql.proste.pl');
/**
* User to log in to SQL server.
*/
define('DATABASE_USER','system_db');
/**
* User password to authorize SQL server.
*/
define('DATABASE_PASSWORD','<redacted>');
/**
* Database to use.
*/
define('DATABASE_NAME','system_db');
/**
* Database driver.
*/
define('DATABASE_DRIVER','mysqlt');
/*
* Turns on transfer reduction: not everything is sent to the client
*/
define('REDUCING_TRANSFER',1);
/*
* Turn on common cache.
*/
define('CACHE_COMMON_FILES',0);
/*
* A lot of debug info, starting with what modules are changed, what module variables are set... etc.
*/
define('DEBUG',0);
/*
* Show module loading time ... = module + all children times
*/
define('MODULE_TIMES',0);
/*
* Show queries execution time.
*/
define('SQL_TIMES',0);
/*
* If you have got good server, but poor connection, turn it on.
*/
define('STRIP_OUTPUT',0);
/*
* Display errors on page.
*/
define('DISPLAY_ERRORS',1);
/*
* Notify all errors, including E_NOTICE, etc. Developer should use it!
*/
define('REPORT_ALL_ERRORS',1);
/*
* Compress history
*/
define('GZIP_HISTORY',1);
/*
* Minify compression
*/
define('MINIFY_ENCODE',1);
/*
* Show donation links in epesi
*/
define('SUGGEST_DONATION',1);
/*
* automatically check for new version
*/
define('CHECK_VERSION',1);
/*
* Disable some administrator preferences.
*/
define('DEMO_MODE',0);
?>