2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 10/02/2012 *
4 * =================== Last change: 10/02/2012 *
6 * -------------------------------------------------------------------- *
7 * File : install-page_finalize.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Installation page include file *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Include-Datei fuer Installationsseite *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2012 by Mailer Developer Team *
20 * For more information visit: http://mxchange.org *
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. *
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. *
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, *
36 ************************************************************************/
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isInstallationPhase())) {
43 // Check pre-conditions
44 if ((isPostRequestElementSet('finalize')) && (!isInstalled())) {
45 // You have submitted data then we have to reset the SQLs
48 // Remove any existing "cache"
49 unset($GLOBALS['is_sql_link_up']);
51 // Connect to database server
52 SQL_CONNECT($GLOBALS['install_mysql']['host'], $GLOBALS['install_mysql']['login'], $GLOBALS['install_mysql']['pass1'], __FILE__, __LINE__);
55 if (SQL_IS_LINK_UP()) {
56 // Seems to work, also right database?
57 if (SQL_SELECT_DB($GLOBALS['install_mysql']['dbase'], __FILE__, __LINE__) === TRUE) {
59 if ((!isFileReadable(postRequestElement('spath') . 'install/tables.sql')) || (!isFileReadable(postRequestElement('spath') . 'install/menu-'.getLanguage().'.sql'))) {
60 // Installation area not found
61 reportBug(__FILE__, __LINE__, 'SQL dumps not found. Please extract ALL files from the archive or checkout all files out from SVN.');
65 // Any errors detected?
66 if (!ifFatalErrorsDetected()) {
67 // Set type, prefix from POST data and database name for later queries
68 setConfigEntry('_TABLE_TYPE' , postRequestElement('mysql', 'type'));
69 setConfigEntry('_MYSQL_PREFIX', postRequestElement('mysql', 'prefix'));
70 setConfigEntry('__DB_NAME' , $GLOBALS['install_mysql']['dbase']);
73 setConfigEntry('PATH', postRequestElement('spath'));
74 unset($GLOBALS['getPath']);
76 // Both exists so import them
77 importInstallSqlDump('tables');
78 importInstallSqlDump('menu-' . getLanguage());
79 //* DEBUG: */ die(__FUNCTION__.'['.__LINE__.']:'<pre>'.print_r(getSqls(), TRUE).'</pre>');
81 // Are some SQLs found?
82 if (countSqls() == 0) {
84 addFatalMessage(__FILE__, __LINE__, '{--INSTALLER_SQL_IMPORT_FAILED--}');
88 // Now run all queries through
89 runFilterChain('run_sqls');
94 // Are some fatal errors there?
95 if (ifFatalErrorsDetected()) {
97 foreach (getFatalArray() as $value) {
98 $OUT .= ' <li>' . $value . '</li>';
100 $content['fatal_errors'] = $OUT;
102 foreach ($GLOBALS['install_mysql'] as $key => $value) {
103 $OUT .= ' <input type="hidden" name="mysql[' . $key . ']" value="' . $value . '" />';
105 $content['mysql_hidden'] = $OUT;
106 $content['spath'] = postRequestElement('spath');
107 $content['burl'] = postRequestElement('burl');
108 $content['title'] = postRequestElement('title');
109 $content['slogan'] = postRequestElement('slogan');
110 $content['email'] = postRequestElement('email');
111 $content['smtp_host'] = postRequestElement('smtp_host');
112 $content['smtp_user'] = postRequestElement('smtp_user');
113 $content['smtp_pass'] = postRequestElement('smtp_pass1');
116 addTemplateToInstallContent('install_fatal_errors', $content);
118 // We have handled all fatal errors here
121 // Copy the config template and verify it
122 doInstallWriteLocalConfigurationFile(
123 postRequestElement('spath'),
124 postRequestElement('burl'),
125 postRequestElement('title'),
126 postRequestElement('slogan'),
127 postRequestElement('email'),
128 postRequestElement('warn_no_pass'),
129 postRequestElement('wfooter'),
130 postRequestElement('blink'),
131 postRequestElement('mysql', 'host'),
132 postRequestElement('mysql', 'dbase'),
133 postRequestElement('mysql', 'login'),
134 postRequestElement('mysql', 'pass1'),
135 postRequestElement('mysql', 'prefix'),
136 postRequestElement('mysql', 'type'),
137 postRequestElement('smtp_host'),
138 postRequestElement('smtp_user'),
139 postRequestElement('smtp_pass1')
142 // Register ext-sql_patches and ext-task
143 if ((registerExtension('sql_patches', NULL)) && (registerExtension('task', NULL))) {
144 // Installation is done!
145 redirectToUrl('install.php?install_page=finished');
147 // Something goes wrong on registration of ext-sql_patches
148 addFatalMessage(__FILE__, __LINE__, '{--INSTALLER_FINALIZER_CANNOT_REGISTER_SQL_PATCHES--}');
152 // Something goes wrong during installation! :-(
153 addFatalMessage(__FILE__, __LINE__, '{--INSTALLER_FINALIZER_FAILED--}');