Fix for ticket #86, thx 2 profi-concept :)
[mailer.git] / install.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/25/2003 *
4  * ===============                              Last change: 04/26/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : install.php                                      *
8  * -------------------------------------------------------------------- *
9  *                                                                      *
10  *          ------------------------------------------------            *
11  *         / PLEASE READ THIS!  /  BITTE LESEN SIE DIESES! /            *
12  *        -------------------------------------------------             *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Short description : Installation script. Please delete this file     *
16  *           after successfully installation or ANYONE can re-setup     *
17  *           your mail exchange script!!!                               *
18  * -------------------------------------------------------------------- *
19  * Kurzbeschreibung  : Installationsscript. Bitte loeschen Sie diese    *
20  *           Datei nach der fertiggestellten Installation oder JEDER    *
21  *           kann Ihr Mailtausch-Script neu einstellen!!!               *
22  * -------------------------------------------------------------------- *
23  *                                                                      *
24  * -------------------------------------------------------------------- *
25  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
26  * For more information visit: http://www.mxchange.org                  *
27  *                                                                      *
28  * This program is free software; you can redistribute it and/or modify *
29  * it under the terms of the GNU General Public License as published by *
30  * the Free Software Foundation; either version 2 of the License, or    *
31  * (at your option) any later version.                                  *
32  *                                                                      *
33  * This program is distributed in the hope that it will be useful,      *
34  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
35  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
36  * GNU General Public License for more details.                         *
37  *                                                                      *
38  * You should have received a copy of the GNU General Public License    *
39  * along with this program; if not, write to the Free Software          *
40  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
41  * MA  02110-1301  USA                                                  *
42  ************************************************************************/
43
44 // Tell every module / include file we are installing
45 define('mxchange_installing', true);
46
47 // Load security system
48 require("inc/libs/security_functions.php");
49
50 // Init "action" and "what"
51 global $what, $action;
52 $GLOBALS['what']   = "";
53 $GLOBALS['action'] = "";
54
55 // Set CSS variable for "normal mode"
56 $CSS = 0;
57
58 // Set module
59 $GLOBALS['module'] = "install";
60
61 // Load config file
62 require("inc/config.php");
63
64 // Header
65 LOAD_INC("inc/header.php");
66
67 // Reload page to page=welcome when it is not specified
68 if (!isset($_GET['page'])) {
69         LOAD_URL("install.php?page=welcome");
70 } // END - if
71
72 // Already installed?
73 if ((isBooleanConstantAndTrue('mxchange_installed')) && (isBooleanConstantAndTrue('admin_registered'))) {
74         // Add fatal message
75         addFatalMessage(ALREADY_INSTALLED);
76 } // END - if
77
78 // Does something goes wrong?
79 if (getTotalFatalErrors() == 0) {
80         // Add main installation table
81         LOAD_TEMPLATE("install_header");
82
83         // Here start's our installtion stuff
84         LOAD_INC_ONCE("inc/install-inc.php");
85
86         // Close main installation table
87         LOAD_TEMPLATE("install_footer");
88 }
89
90 // Footer
91 LOAD_INC("inc/footer.php");
92
93 //
94 ?>