also prevent it in .htacces. You may want to add this to one of your files in /etc...
[mailer.git] / inc / init.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 06/04/2016 *
4  * ===================                          Last change: 06/04/2016 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : init.php                                         *
8  * -------------------------------------------------------------------- *
9  * Short description : Initial stuff for all scripts                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Initiale Dinge fuer alle Scripte                 *
12  * -------------------------------------------------------------------- *
13  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
14  * Copyright (c) 2009 - 2016 by Mailer Developer Team                   *
15  * For more information visit: http://mxchange.org                      *
16  *                                                                      *
17  * This program is free software; you can redistribute it and/or modify *
18  * it under the terms of the GNU General Public License as published by *
19  * the Free Software Foundation; either version 2 of the License, or    *
20  * (at your option) any later version.                                  *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 // Some security stuff...
34 if (!defined('__SECURITY')) {
35         die();
36 } // END - if
37
38 /********************************************************************************
39  * Please don't touch anything here. Instead set them again in config-local.php *
40  ********************************************************************************/
41
42 // Proper function exists?
43 if (function_exists('date_default_timezone_set')) {
44         // Set default timezone to Europe/Berlin (because I'm from Germany)
45         @date_default_timezone_set('Europe/Berlin');
46 } // END - if
47
48 // CFG: ERROR-REPORTING
49 error_reporting(E_ALL | E_DEPRECATED | E_STRICT);
50
51 // Is the function there? (removed in PHP 5.4.0)
52 if (function_exists('import_request_variables')) {
53         // CFG: REGISTER-GLOBALS
54         @import_request_variables('');
55 } // END - if
56
57 // Detect path (without 'inc') and fix windozer paths
58 $path = str_replace(chr(92), '/', substr(dirname(__FILE__), 0, -3));
59
60 // Some very important function includes
61 foreach (array('config', 'wrapper', 'template', 'module', 'inc', 'http', 'general') as $inc) {
62         include($path . 'inc/' . $inc . '-functions.php');
63 } // END - foreach
64
65 // Initialize application
66 initApplication($path);
67
68 // [EOF]
69 ?>