X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fconfig-global.php;h=ed79da2d75ab992de91f81f3382e01a9f371fb45;hb=6ab597cf6eeb82241f57ca7d13871338dbb9bcaa;hp=9ffed08a5029186fad5be700f16825bf6a6773ed;hpb=40547996bdb16c5d2c507cb7111ae993a3fcebb9;p=mailer.git diff --git a/inc/config-global.php b/inc/config-global.php index 9ffed08a50..ed79da2d75 100644 --- a/inc/config-global.php +++ b/inc/config-global.php @@ -1,7 +1,7 @@ 2009 - 2012 by Mailer Developer Team'); + +// CFG: CACHE-PATH +setConfigEntry('CACHE_PATH', 'inc/cache/'); -// Connect to the MySQL database... +// 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'); -// +// Init stats system +initStatsSystem(); + +// [EOF] ?>