X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fconfig-global.php;h=78359322d70349970fe94899f1a97bd956e2ca50;hb=a524135c24dd0a8fa359c9a92399467d50fd69e0;hp=a0a80c4478f692150e82d55b44bafe4460b71e19;hpb=5f41b2659b13540c656a63207aa8563e2897b1de;p=mailer.git diff --git a/inc/config-global.php b/inc/config-global.php index a0a80c4478..78359322d7 100644 --- a/inc/config-global.php +++ b/inc/config-global.php @@ -1,7 +1,7 @@ 2009 - 2016 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] ?>