Notice fixed and RewriteEngine enabled in .htaccess
[mailer.git] / index.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/25/2003 *
4  * ===============                              Last change: 11/23/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : index.php                                        *
8  * -------------------------------------------------------------------- *
9  * Short description : Index page. A simple redirection to modules.php  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Index-Seite. Eine simple Weiterleitung auf die   *
12  *           modules.php                                                *
13  * -------------------------------------------------------------------- *
14  *                                                                      *
15  * -------------------------------------------------------------------- *
16  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
17  * For more information visit: http://www.mxchange.org                  *
18  *                                                                      *
19  * This program is free software; you can redistribute it and/or modify *
20  * it under the terms of the GNU General Public License as published by *
21  * the Free Software Foundation; either version 2 of the License, or    *
22  * (at your option) any later version.                                  *
23  *                                                                      *
24  * This program is distributed in the hope that it will be useful,      *
25  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
26  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
27  * GNU General Public License for more details.                         *
28  *                                                                      *
29  * You should have received a copy of the GNU General Public License    *
30  * along with this program; if not, write to the Free Software          *
31  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
32  * MA  02110-1301  USA                                                  *
33  ************************************************************************/
34
35 // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
36 require_once("inc/libs/security_functions.php");
37
38 // Init "action" and "what"
39 global $what, $action;
40 $GLOBALS['what'] = ""; $GLOBALS['action'] = "";
41
42 // Set module
43 $GLOBALS['module'] = "index";
44
45 // Load config.php
46 require ("inc/config.php");
47
48 // Is the script installed?
49 if (defined('mxchange_installed') && (mxchange_installed))
50 {
51         // Header
52         require(PATH."inc/header.php");
53
54         // Check for cookies
55         if (empty($_COOKIE['visited']) || ($CONFIG['index_delay'] == 0) || ($CONFIG['index_cookie'] == 0))
56         {
57                 if ($CONFIG['index_cookie'] > 0)
58                 {
59                         // Set cookie and remeber it for specified time
60                         @setcookie("visited", "true", (time() + $CONFIG['index_cookie']), COOKIE_PATH);
61                 }
62                  elseif (!empty($_COOKIE['visited']))
63                 {
64                         // Remove cookie when admin set 0 in setup
65                         @setcookie("visited", "", (time() - 3600), COOKIE_PATH);
66                 }
67
68                 // Template laden
69                 LOAD_TEMPLATE("index", false, ADD_URL_DATA(""));
70
71                 // Shall I insert an automated forward?
72                 if ($CONFIG['index_delay'] > 0)
73                 {
74                         // This will be a JavaScript-redirect!
75                         define('__DELAY_VALUE', ($CONFIG['index_delay'] * 1000 + 500));
76                         define('__MOD_VALUE'  , ADD_URL_DATA("index"));
77                         LOAD_TEMPLATE("index_forward");
78                 }
79         }
80          else
81         {
82                 // Redirect to main page
83                 LOAD_URL(URL."/modules.php?module=index");
84         }
85
86         // Footer
87         require(PATH."inc/footer.php");
88 }
89  else
90 {
91         // You have to configure first!
92         LOAD_URL("install.php");
93 }
94 // All done here...
95 ?>