X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fconfig-global.php;h=9880b8f9a83e57630a7fd5fa78c50b33d898e9af;hb=8848f4a3fd7b32a1bbd9139766171701b94b2f42;hp=a0a80c4478f692150e82d55b44bafe4460b71e19;hpb=5f41b2659b13540c656a63207aa8563e2897b1de;p=mailer.git diff --git a/inc/config-global.php b/inc/config-global.php index a0a80c4478..9880b8f9a8 100644 --- a/inc/config-global.php +++ b/inc/config-global.php @@ -1,7 +1,7 @@ 2009 - 2015 by Mailer Developer Team'); + +// CFG: CACHE-PATH +setConfigEntry('CACHE_PATH', 'inc/cache/'); + +// CFG: CACHE-EXTENSION +setConfigEntry('CACHE_EXTENSION', '.cache.php'); + +// CFG: INTERNAL-STATS (This setting is overwritten by ext-other equal and prior version 0.2.7) +setConfigEntry('internal_stats', 'N'); + +// CFG: DEBUG-TEMPLATE-CACHE +setConfigEntry('DEBUG_TEMPLATE_CACHE', 'Y'); + +// CFG: SALT-LENGTH +setConfigEntry('salt_length', 10); + +// CFG: MINIMUM-ADMIN-PASS-LENGTH +setConfigEntry('minium_admin_pass_length', 4); + +// Remove maybe conflicting variables +unset($url); +unset($path); + +// Connect to the database... +loadIncludeOnce('inc/mysql-connect.php'); -// Connect to the MySQL database... -require(constant('PATH') . 'inc/mysql-connect.php'); +// Init stats system +initStatsSystem(); -// +// [EOF] ?>