More places are now using GET_TOTAL_DATA() instead of query
[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  *           First of all setup the base URL.                           *
20  * -------------------------------------------------------------------- *
21  * Kurzbeschreibung  : Installationsscript. Bitte loeschen Sie diese    *
22  *           Datei nach der fertiggestellten Installation oder JEDER    *
23  *           kann Ihr Mailtausch-Script neu einstellen!!!               *
24  *                                                                      *
25  *           Als erstes sollten Sie die Basis-URL einstellen.           *
26  * -------------------------------------------------------------------- *
27  *                                                                      *
28  * -------------------------------------------------------------------- *
29  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
30  * For more information visit: http://www.mxchange.org                  *
31  *                                                                      *
32  * This program is free software; you can redistribute it and/or modify *
33  * it under the terms of the GNU General Public License as published by *
34  * the Free Software Foundation; either version 2 of the License, or    *
35  * (at your option) any later version.                                  *
36  *                                                                      *
37  * This program is distributed in the hope that it will be useful,      *
38  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
39  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
40  * GNU General Public License for more details.                         *
41  *                                                                      *
42  * You should have received a copy of the GNU General Public License    *
43  * along with this program; if not, write to the Free Software          *
44  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
45  * MA  02110-1301  USA                                                  *
46  ************************************************************************/
47
48 // Tell every module / include file we are installing
49 define('mxchange_installing', true);
50
51 // Load security system
52 require ("inc/libs/security_functions.php");
53
54 // Init "action" and "what"
55 global $what, $action;
56 $GLOBALS['what'] = ""; $GLOBALS['action'] = "";
57
58 // Set module
59 $GLOBALS['module'] = "install";
60
61 // Load config file
62 require ("inc/config.php");
63
64 // Header
65 require (PATH."inc/header.php");
66
67 // Reload page to page=welcome when it is not specified
68 if (!isset($_GET['page']))
69 {
70         LOAD_URL("install.php?page=welcome");
71 }
72
73 // Already installed?
74 if ((isBooleanConstantAndTrue('mxchange_installed')) && (isBooleanConstantAndTrue('admin_registered'))) {
75         // Add fatal message
76         ADD_FATAL(ALREADY_INSTALLED);
77 }
78
79 // Does something goes wrong?
80 if ((sizeof($FATAL == 0)) && (empty($FATAL[0]))) {
81         // Add main installation table
82         LOAD_TEMPLATE("install_header");
83
84         // Here start's our installtion stuff
85         require_once (PATH."inc/install-inc.php");
86
87         // Close main installation table
88         LOAD_TEMPLATE("install_footer");
89 }
90
91 // Footer
92 require (PATH."inc/footer.php");
93
94 //
95 ?>