Renamed ifSqlHasZeroNums() to ifSqlHasZeroNumRows() and improved some queries.
[mailer.git] / inc / config-global.php
index 1a74f7970f3654b3e97e8c800312c310b1d22b4d..e34c4cfb9d33f5d6c2574199d5a3d3af6e115590 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 04/03/2009 *
- * ===============                              Last change: 04/03/2009 *
+ * Mailer v0.2.1-FINAL                                Start: 04/03/2009 *
+ * ===================                          Last change: 04/03/2009 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : config-global.php                                *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Globale Konfiguration                            *
  * -------------------------------------------------------------------- *
- * $Revision::                                                        $ *
- * $Date::                                                            $ *
- * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
- * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
-       require($INC);
+       die();
 } // END - if
 
 /************************************************************************
  *      PLEASE DO NOT EDIT THE COMMENTS! install.php NEEDS THEM!        *
  ************************************************************************/
 
+// Proper function exists?
 if (function_exists('date_default_timezone_set')) {
-       // CFG: TIME-ZONE
+       // Set default timezone to Europe/Berlin (because I'm from Germany)
        @date_default_timezone_set('Europe/Berlin');
 } // END - if
 
-// CFG: ERROR_REPORTING
-error_reporting(E_ALL | E_STRICT);
+// CFG: ERROR-REPORTING
+error_reporting(E_ALL | E_DEPRECATED | E_STRICT);
 
-// CFG: REGISTER-GLOBALS
-@import_request_variables('');
+// Is the function there? (removed in PHP 5.4.0)
+if (function_exists('import_request_variables')) {
+       // CFG: REGISTER-GLOBALS
+       @import_request_variables('');
+} // END - if
 
-// Detect path
-$PATH = str_replace("\\", '/', substr(dirname(__FILE__), 0, -3));
+// Detect path (without 'inc') and fix windozer paths
+$path = str_replace(chr(92), '/', substr(dirname(__FILE__), 0, -3));
 
-// Configuration include file
-require($PATH . 'inc/config-functions.php');
+// Some very important function includes
+foreach (array('config', 'wrapper', 'template', 'module', 'inc', 'http') as $inc) {
+       include($path . 'inc/' . $inc . '-functions.php');
+} // END - foreach
 
-// Wrapper include file
-require($PATH . 'inc/wrapper-functions.php');
+// General functions
+include($path . 'inc/functions.php');
+
+// Auto-detection of URL
+$URL = detectServerProtocol() . '://' . detectServerName() . str_replace(chr(92), '/', dirname($_SERVER['PHP_SELF']));
+while (substr($URL, -1, 1) == '/') { $URL = substr($URL, 0, -1); }
 
 // Initialize the configuration
 initConfig();
 
-// Auto-detection... (patched by "Stelzi" aka. profi-concept, thanks again!)
-$URL = 'http://' . getenv('SERVER_NAME') . str_replace("\\", '/', dirname($_SERVER['PHP_SELF']));
-while (substr($URL, -1, 1) == '/') { $URL = substr($URL, 0, -1); }
+// Init HTTP handling
+initHttp();
+
+// CFG: FLOAT-MASK
+setConfigEntry('FLOAT_MASK', '%01.5f');
 
 // CFG: HOST-URL (without trailing '/' !)
 setConfigEntry('URL', $URL);
 
-// CFG: SERVER-PATH
-setConfigEntry('PATH', str_replace("\\", '/', substr(dirname(__FILE__), 0, -3)));
+// CFG: DOMAIN-NAME (without trailing '/' !)
+setConfigEntry('DOMAIN', detectDomainName());
 
-// Connect to the MySQL database...
-loadIncludeOnce('inc/mysql-connect.php');
+// CFG: SERVER-PATH
+setConfigEntry('PATH', $path);
 
 // CFG: VERSION
 setConfigEntry('VERSION', 'v0.2.1');
@@ -89,10 +94,38 @@ setConfigEntry('VERSION', 'v0.2.1');
 setConfigEntry('AUTHOR' , 'Roland H&auml;der');
 
 // CFG: TITLE
-setConfigEntry('TITLE', 'MXChange - Mail Exchange');
+setConfigEntry('TITLE', 'Mailer-Project');
 
 // CFG: COPY
-setConfigEntry('COPY', 'Copyright &copy; 2003 - 2008, by Roland H&auml;der');
+setConfigEntry('COPY', 'Copyright &copy; 2003 - 2009, by Roland H&auml;der,<br />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');
+
+// Init stats system
+initStatsSystem();
 
-//
+// [EOF]
 ?>