Fix for wrong detection of broken HTTP server
[mailer.git] / install.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 08/25/2003 *
4  * ===================                          Last change: 04/26/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : install.php                                      *
8  * -------------------------------------------------------------------- *
9  * Short description : Installation script.                             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Installationsscript.                             *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // XDEBUG call
39 //* DEBUG: */ xdebug_start_trace();
40
41 // Load security system
42 require('inc/libs/security_functions.php');
43
44 // Init start time
45 $GLOBALS['startTime'] = microtime(true);
46
47 // Tell every module / require file we are installing
48 $GLOBALS['mailer_installing'] = true;
49
50 // Set CSS variable for "normal mode"
51 $GLOBALS['output_mode'] = '0';
52
53 // Set module
54 $GLOBALS['module'] = 'install';
55
56 // Load config file
57 require('inc/config-global.php');
58
59 // Set content type
60 setContentType('text/html');
61
62 // Reload page to page=welcome when it is not specified
63 if (!isGetRequestParameterSet('page')) {
64         redirectToUrl('install.php?page=welcome');
65 } // END - if
66
67 // Set username
68 setUsername('{--USERNAME_INSTALLER--}');
69
70 // Already installed?
71 if ((isInstalled()) && (getRequestParameter('page') != 'finished')) {
72         // Add fatal message
73         addFatalMessage(__FILE__, __LINE__, '{--ALREADY_INSTALLED--}');
74 } // END - if
75
76 // Load header here
77 loadIncludeOnce('inc/header.php');
78
79 // Handle fatal errors
80 runFilterChain('handle_fatal_errors');
81
82 // Here start's our installtion stuff
83 loadIncludeOnce('inc/install-inc.php');
84
85 // Load main installation table
86 loadTemplate('install_main', false, getInstallerContent());
87
88 // Footer
89 loadIncludeOnce('inc/footer.php');
90
91 // [EOF]
92 ?>