2 /************************************************************************
3 * MXChange v0.2.1 Start: 08/25/2003 *
4 * =============== Last change: 04/26/2004 *
6 * -------------------------------------------------------------------- *
8 * -------------------------------------------------------------------- *
10 * ------------------------------------------------ *
11 * / PLEASE READ THIS! / BITTE LESEN SIE DIESES! / *
12 * ------------------------------------------------- *
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 * -------------------------------------------------------------------- *
25 * $Tag:: 0.2.1-FINAL $ *
27 * Needs to be in all Files and every File needs "svn propset *
28 * svn:keywords Date Revision" (autoprobset!) at least!!!!!! *
29 * -------------------------------------------------------------------- *
30 * Copyright (c) 2003 - 2008 by Roland Haeder *
31 * For more information visit: http://www.mxchange.org *
33 * This program is free software; you can redistribute it and/or modify *
34 * it under the terms of the GNU General Public License as published by *
35 * the Free Software Foundation; either version 2 of the License, or *
36 * (at your option) any later version. *
38 * This program is distributed in the hope that it will be useful, *
39 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
40 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
41 * GNU General Public License for more details. *
43 * You should have received a copy of the GNU General Public License *
44 * along with this program; if not, write to the Free Software *
45 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
47 ************************************************************************/
49 // Load security system
50 require('inc/libs/security_functions.php');
53 $GLOBALS['startTime'] = microtime(true);
55 // Tell every module / include file we are installing
56 $GLOBALS['mxchange_installing'] = true;
58 // Set CSS variable for "normal mode"
59 $GLOBALS['output_mode'] = 0;
62 $GLOBALS['module'] = 'install';
65 require('inc/config-global.php');
67 // Reload page to page=welcome when it is not specified
68 if (!REQUEST_ISSET_GET('page')) {
69 redirectToUrl('install.php?page=welcome');
73 if ((isInstalled()) && (REQUEST_GET('page' != 'finished'))) {
75 addFatalMessage(__FILE__, __LINE__, getMessage('ALREADY_INSTALLED'));
78 // Does something goes wrong?
79 if (getTotalFatalErrors() > 0) {
80 // Output fatal messages
81 loadInclude('inc/fatal_errors.php');
85 loadIncludeOnce('inc/header.php');
87 // Add main installation table
88 LOAD_TEMPLATE('install_header');
90 // Here start's our installtion stuff
91 loadIncludeOnce('inc/install-inc.php');
93 // Close main installation table
94 LOAD_TEMPLATE('install_footer');
97 loadIncludeOnce('inc/footer.php');