Project

General

Profile

1 552 thorn
<?php
2
3 1217 MaGnaL
/****************************************************************************
4
* SVN Version information:
5
*
6
* $Id$
7
*
8
*****************************************************************************
9
*
10
*****************************************************************************
11
*                          WebsiteBaker
12
*
13
* WebsiteBaker Project <http://www.websitebaker2.org/>
14
* Copyright (C) 2009, Website Baker Org. e.V.
15
*         http://start.websitebaker2.org/impressum-datenschutz.php
16
* Copyright (C) 2004-2009, Ryan Djurovich
17
*
18
*                        About WebsiteBaker
19
*
20
* Website Baker is a PHP-based Content Management System (CMS)
21
* designed with one goal in mind: to enable its users to produce websites
22
* with ease.
23
*
24
*****************************************************************************
25
*
26
*****************************************************************************
27
*                   WebsiteBaker Extra Information
28
*
29
* @author       : thorn, Matthias Gallas, doc, Dietrich Roland Pehlke, Manuel Lang
30
* @platform     : WebsiteBaker 2.8
31
*
32
*****************************************************************************
33
*
34
*****************************************************************************
35
*                        LICENSE INFORMATION
36
*
37
* WebsiteBaker is free software; you can redistribute it and/or
38
* modify it under the terms of the GNU General Public License
39
* as published by the Free Software Foundation; either version 2
40
* of the License, or (at your option) any later version.
41
*
42
* WebsiteBaker is distributed in the hope that it will be useful,
43
* but WITHOUT ANY WARRANTY; without even the implied warranty of
44
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
45
* See the GNU General Public License for more details.
46
*
47
* You should have received a copy of the GNU General Public License
48
* along with this program; if not, write to the Free Software
49
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
50
*****************************************************************************/
51 552 thorn
52 749 doc
@include_once('config.php');
53
54 715 doc
// this function checks the basic configurations of an existing WB intallation
55
function status_msg($message, $class='check', $element='span') {
56
	// returns a status message
57
	echo '<'.$element .' class="' .$class .'">' .$message .'</' .$element.'>';
58
}
59 552 thorn
60
61
?>
62
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
63
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
64
<head>
65 882 Ruebenwurz
<title>Upgrade script</title>
66 719 doc
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
67 692 doc
<style type="text/css">
68 715 doc
body {
69
	margin:0;
70
	padding:0;
71
	border:0;
72
	background: #EBF7FC;
73
	color:#000;
74 882 Ruebenwurz
	font-family: 'Trebuchet MS', Verdana, Arial, Helvetica, Sans-Serif;
75 715 doc
	font-size: small;
76
	height:101%;
77
}
78 692 doc
79 715 doc
#container {
80
	width:85%;
81 963 Ruebenwurz
	background: #A8BCCB url(templates/wb_theme/images/background.png) repeat-x;
82 715 doc
	border:1px solid #000;
83
	color:#000;
84
	margin:2em auto;
85
	padding:0 15px;
86
	min-height: 500px;
87
	text-align:left;
88 692 doc
}
89
90
p { line-height:1.5em; }
91
92 715 doc
h1,h2,h3,h4,h5,h6 {
93
	font-family: Verdana, Arial, Helvetica, sans-serif;
94
	color: #369;
95
	margin-top: 1.0em;
96
	margin-bottom: 0.1em;
97
}
98
99
h1 { font-size:150%; }
100
h2 { font-size: 130%; border-bottom: 1px #CCC solid; }
101
h3 { font-size: 120%; }
102
103
.ok, .error { font-weight:bold; }
104
.ok { color:green; }
105
.error { color:red; }
106
.check { color:#555; }
107
108
.warning {
109
	width: 98%;
110
	background:#FFDBDB;
111
	padding:0.2em;
112
	margin-top:0.5em;
113
	border: 1px solid black;
114
}
115 692 doc
</style>
116 552 thorn
</head>
117
<body>
118 715 doc
<div id="container">
119 963 Ruebenwurz
<img src="templates/wb_theme/images/logo.png" alt="Website Baker Logo" />
120 715 doc
121
<h1>Website Baker Upgrade</h1>
122 956 doc
<p>This script upgrades an existing Website Baker <strong>Version 2.7</strong> installation to the <strong>Version 2.8</strong>. The upgrade script alters the existing WB database to reflect the changes introduced with WB 2.8.</p>
123 715 doc
124 692 doc
<?php
125 956 doc
/**
126
 * Check if disclaimer was accepted
127
 */
128
if (!(isset($_POST['backup_confirmed']) && $_POST['backup_confirmed'] == 'confirmed')) { ?>
129
<h2>Step 1: Backup your files</h2>
130
<p>It is highly recommended to <strong>create a manual backup</strong> of the entire <strong>/pages folder</strong> and the <strong>MySQL database</strong> before proceeding.<br /><strong class="error">Note: </strong>The upgrade script alters some settings of your existing database!!! You need to confirm the disclaimer before proceeding.</p>
131 715 doc
132 1217 MaGnaL
<form name="send" action="<?php echo $_SERVER['PHP_SELF'];?>" method="post">
133 956 doc
<textarea cols="80" rows="5">DISCLAIMER: The Website Baker upgrade script is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. One needs to confirm that a manual backup of the /pages folder (including all files and subfolders contained in it) and backup of the entire Website Baker MySQL database was created before you can proceed.</textarea>
134
<br /><br /><input name="backup_confirmed" type="checkbox" value="confirmed" />&nbsp;I confirm that a manual backup of the /pages folder and the MySQL database was created.
135
<br /><br /><input name="send" type="submit" value="Start upgrade script" />
136
</form>
137
<br />
138
139
<?php
140
	status_msg('<strong>Notice:</strong><br />You need to confirm that you have created a manual backup of the /pages directory and the MySQL database before you can proceed.', 'warning', 'div');
141
	echo '<br /><br />';
142
	exit;
143
}
144
145
echo '<h2>Step 2: Updating database entries</h2>';
146 1139 aldus
define ("DEFAULT_THEME", "wb_theme");
147 719 doc
require_once('config.php');
148
require_once(WB_PATH.'/framework/functions.php');
149 552 thorn
150 720 doc
$OK   = '<span class="ok">OK</span>';
151
$FAIL = '<span class="error">FAILED</span>';
152 552 thorn
153 883 thorn
// function to add a var/value-pair into settings-table
154 882 Ruebenwurz
function db_add_key_value($key, $value) {
155 552 thorn
	global $database; global $OK; global $FAIL;
156 882 Ruebenwurz
	$table = TABLE_PREFIX.'settings';
157 596 thorn
	$query = $database->query("SELECT value FROM $table WHERE name = '$key' LIMIT 1");
158 552 thorn
	if($query->numRows() > 0) {
159 956 doc
		echo "$key: already exists. $OK.<br />";
160 552 thorn
		return true;
161
	} else {
162 882 Ruebenwurz
		$database->query("INSERT INTO $table (name,value) VALUES ('$key', '$value')");
163 648 thorn
		echo (mysql_error()?mysql_error().'<br />':'');
164 596 thorn
		$query = $database->query("SELECT value FROM $table WHERE name = '$key' LIMIT 1");
165 552 thorn
		if($query->numRows() > 0) {
166
			echo "$key: $OK.<br />";
167
			return true;
168
		} else {
169
			echo "$key: $FAIL!<br />";
170
			return false;
171
		}
172
	}
173
}
174
175 883 thorn
// function to add a new field into a table
176
function db_add_field($field, $table, $desc) {
177
	global $database; global $OK; global $FAIL;
178
	$table = TABLE_PREFIX.$table;
179
	$query = $database->query("DESCRIBE $table '$field'");
180
	if($query->numRows() == 0) { // add field
181
		$query = $database->query("ALTER TABLE $table ADD $field $desc");
182
		echo (mysql_error()?mysql_error().'<br />':'');
183
		$query = $database->query("DESCRIBE $table '$field'");
184
		echo (mysql_error()?mysql_error().'<br />':'');
185
		if($query->numRows() > 0) {
186
			echo "'$field' added. $OK.<br />";
187
		} else {
188
			echo "adding '$field' $FAIL!<br />";
189
		}
190
	} else {
191 956 doc
		echo "'$field' already exists. $OK.<br />";
192 883 thorn
	}
193
}
194
195
196
/**********************************************************
197
 *  - Adding field sec_anchor to settings table
198
 */
199 944 Ruebenwurz
echo "<br />Adding sec_anchor to settings table<br />";
200 552 thorn
$cfg = array(
201 882 Ruebenwurz
	'sec_anchor' => 'wb_'
202 552 thorn
);
203
foreach($cfg as $key=>$value) {
204 882 Ruebenwurz
	db_add_key_value($key, $value);
205 552 thorn
}
206
207 944 Ruebenwurz
208 929 doc
/**********************************************************
209 944 Ruebenwurz
 *  - Adding field default_theme to settings table
210
 */
211
echo "<br />Adding default_theme to settings table<br />";
212
$cfg = array(
213
	'default_theme' => 'wb_theme'
214
);
215
foreach($cfg as $key=>$value) {
216
	db_add_key_value($key, $value);
217
}
218
219
220
/**********************************************************
221 929 doc
 *  - Adding redirect timer to settings table
222
 */
223
echo "<br />Adding redirect timer to settings table<br />";
224
$cfg = array(
225
	'redirect_timer' => '1500'
226
);
227
foreach($cfg as $key=>$value) {
228
	db_add_key_value($key, $value);
229
}
230 883 thorn
231 944 Ruebenwurz
232 552 thorn
/**********************************************************
233 1035 Ruebenwurz
 *  - Adding mediasettings to settings table
234
 */
235
echo "<br />Adding mediasettings to settings table<br />";
236
$cfg = array(
237
	'mediasettings' => ''
238
);
239
foreach($cfg as $key=>$value) {
240
	db_add_key_value($key, $value);
241
}
242
243
244
/**********************************************************
245 883 thorn
 *  - Add field "redirect_type" to table "mod_menu_link"
246
 */
247
echo "<br />Adding field redirect_type to mod_menu_link table<br />";
248
db_add_field('redirect_type', 'mod_menu_link', "INT NOT NULL DEFAULT '302' AFTER `target_page_id`");
249
250
251
/**********************************************************
252 943 doc
 *  - Update search no results database filed to create
253
 *  valid XHTML if search is empty
254
 */
255
echo "<br />Updating database field `no_results` of search table: ";
256
$search_no_results = addslashes('<tr><td><p>[TEXT_NO_RESULTS]</p></td></tr>');
257
$sql = "UPDATE `" . TABLE_PREFIX . "search` SET `value` = '$search_no_results' WHERE `name`= 'no_results'";
258
$database->query($sql);
259
echo ($database->query($sql)) ? " $OK<br />" : " $FAIL<br />";
260
261 944 Ruebenwurz
262 943 doc
/**********************************************************
263 1054 Ruebenwurz
 *  - Update settings of News Modul
264
 */
265
266
// These are the default setting
267 1110 Ruebenwurz
$header = '<table cellpadding=\"0\" cellspacing=\"0\" class=\"loop-header\">'."\n";
268 1054 Ruebenwurz
$post_loop = '<tr class=\"post_top\">
269
<td class=\"post_title\"><a href=\"[LINK]\">[TITLE]</a></td>
270
<td class=\"post_date\">[PUBLISHED_TIME], [PUBLISHED_DATE]</td>
271
</tr>
272
<tr>
273
<td class=\"post_short\" colspan=\"2\">
274 1110 Ruebenwurz
[SHORT]
275 1054 Ruebenwurz
<span style=\"visibility:[SHOW_READ_MORE];\"><a href=\"[LINK]\">[TEXT_READ_MORE]</a></span>
276
</td>
277
</tr>';
278 1110 Ruebenwurz
$footer = '</table>
279
<table cellpadding="0" cellspacing="0" class="page-header" style="display: [DISPLAY_PREVIOUS_NEXT_LINKS]">
280 1054 Ruebenwurz
<tr>
281 1110 Ruebenwurz
<td class="page-left">[PREVIOUS_PAGE_LINK]</td>
282
<td class="page-center">[OF]</td>
283
<td class="page-right">[NEXT_PAGE_LINK]</td>
284 1054 Ruebenwurz
</tr>
285 1110 Ruebenwurz
</table>';
286
$post_header = addslashes('<table cellpadding="0" cellspacing="0" class="post-header">
287 1054 Ruebenwurz
<tr>
288 1110 Ruebenwurz
<td><h1>[TITLE]</h1></td>
289
<td rowspan="3" style="display: [DISPLAY_IMAGE]">[GROUP_IMAGE]</td>
290 1054 Ruebenwurz
</tr>
291 1110 Ruebenwurz
<tr>
292
<td class="public-info"><b>[TEXT_POSTED_BY] [DISPLAY_NAME] ([USERNAME]) [TEXT_ON] [PUBLISHED_DATE]</b></td>
293
</tr>
294 1054 Ruebenwurz
<tr style="display: [DISPLAY_GROUP]">
295 1110 Ruebenwurz
<td class="group-page"><a href="[BACK]">[PAGE_TITLE]</a> &gt;&gt; <a href="[BACK]?g=[GROUP_ID]">[GROUP_TITLE]</a></td>
296 1054 Ruebenwurz
</tr>
297
</table>');
298
$post_footer = '<p>[TEXT_LAST_CHANGED]: [MODI_DATE] [TEXT_AT] [MODI_TIME]</p>
299
<a href=\"[BACK]\">[TEXT_BACK]</a>';
300
$comments_header = addslashes('<br /><br />
301
<h2>[TEXT_COMMENTS]</h2>
302 1110 Ruebenwurz
<table cellpadding="2" cellspacing="0" class="comment-header">');
303 1054 Ruebenwurz
$comments_loop = addslashes('<tr>
304
<td class="comment_title">[TITLE]</td>
305
<td class="comment_info">[TEXT_BY] [DISPLAY_NAME] [TEXT_ON] [DATE] [TEXT_AT] [TIME]</td>
306
</tr>
307
<tr>
308
<td colspan="2" class="comment_text">[COMMENT]</td>
309
</tr>');
310
$comments_footer = '</table>
311
<br /><a href=\"[ADD_COMMENT_URL]\">[TEXT_ADD_COMMENT]</a>';
312
$comments_page = '<h1>[TEXT_COMMENT]</h1>
313
<h2>[POST_TITLE]</h2>
314
<br />';
315
316
317
// Insert default settings into database
318
$query_dates = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_news_settings where section_id != 0 and page_id != 0");
319
while($result = $query_dates->fetchRow()) {
320
321 1055 Ruebenwurz
	echo "<br /><u>Add default settings to database for news section_id= ".$result['section_id']."</u><br />";
322 1054 Ruebenwurz
	$section_id = $result['section_id'];
323
324 1110 Ruebenwurz
	if($database->query("UPDATE `".TABLE_PREFIX."mod_news_settings` SET `header` = '$header' WHERE `section_id` = $section_id")) {
325
		echo 'Database data header added successfully';
326
	}
327
	echo mysql_error().'<br />';
328
329 1054 Ruebenwurz
	if($database->query("UPDATE `".TABLE_PREFIX."mod_news_settings` SET `post_loop` = '$post_loop' WHERE `section_id` = $section_id")) {
330 1055 Ruebenwurz
		echo 'Database data post_loop added successfully';
331 1054 Ruebenwurz
	}
332
	echo mysql_error().'<br />';
333
334 1110 Ruebenwurz
	if($database->query("UPDATE `".TABLE_PREFIX."mod_news_settings` SET `footer` = '$footer' WHERE `section_id` = $section_id")) {
335
		echo 'Database data footer added successfully';
336
	}
337
	echo mysql_error().'<br />';
338
339 1054 Ruebenwurz
	if($database->query("UPDATE `".TABLE_PREFIX."mod_news_settings` SET `post_header` = '$post_header' WHERE `section_id` = $section_id")) {
340 1055 Ruebenwurz
		echo 'Database data post_header added successfully';
341 1054 Ruebenwurz
	}
342
	echo mysql_error().'<br />';
343
344
	if($database->query("UPDATE `".TABLE_PREFIX."mod_news_settings` SET `post_footer` = '$post_footer' WHERE `section_id` = $section_id")) {
345 1055 Ruebenwurz
		echo 'Database data post_footer added successfully';
346 1054 Ruebenwurz
	}
347
	echo mysql_error().'<br />';
348
349
	if($database->query("UPDATE `".TABLE_PREFIX."mod_news_settings` SET `comments_header` = '$comments_header' WHERE `section_id` = $section_id")) {
350 1055 Ruebenwurz
		echo 'Database data comments_header added successfully';
351 1054 Ruebenwurz
	}
352
	echo mysql_error().'<br />';
353
354
	if($database->query("UPDATE `".TABLE_PREFIX."mod_news_settings` SET `comments_loop` = '$comments_loop' WHERE `section_id` = $section_id")) {
355 1055 Ruebenwurz
		echo 'Database data comments_loop added successfully';
356 1054 Ruebenwurz
	}
357
	echo mysql_error().'<br />';
358
359
	if($database->query("UPDATE `".TABLE_PREFIX."mod_news_settings` SET `comments_footer` = '$comments_footer' WHERE `section_id` = $section_id")) {
360 1055 Ruebenwurz
		echo 'Database data comments_footer added successfully';
361 1054 Ruebenwurz
	}
362
	echo mysql_error().'<br />';
363
364
	if($database->query("UPDATE `".TABLE_PREFIX."mod_news_settings` SET `comments_page` = '$comments_page' WHERE `section_id` = $section_id")) {
365 1055 Ruebenwurz
		echo 'Database data comments_page added successfully';
366 1054 Ruebenwurz
	}
367
	echo mysql_error().'<br />';
368
369
}
370
371
/**********************************************************
372 1111 Ruebenwurz
 *  - Set Version to WB 2.8
373 944 Ruebenwurz
 */
374 1111 Ruebenwurz
echo "<br />Update database version number to 2.8 : ";
375
$version = '2.8';
376 944 Ruebenwurz
echo ($database->query("UPDATE `".TABLE_PREFIX."settings` SET `value` = '$version' WHERE `name` = 'wb_version'")) ? " $OK<br />" : " $FAIL<br />";
377
378
379
/**********************************************************
380 994 Ruebenwurz
 *  - install droplets
381
 */
382
echo "<br />Install droplets<br />";
383
384 1145 aldus
$result = $database->query( "SHOW TABLES FROM ".DB_NAME);
385 995 aldus
$all_tables = array();
386 1145 aldus
while ($data = $result->fetchRow()) $all_tables[] = $data[0];
387 994 Ruebenwurz
388 995 aldus
 $file_name = (!in_array ( TABLE_PREFIX."mod_droplets", $all_tables)) ? "install.php" : "upgrade.php";
389
 require_once (WB_PATH."/modules/droplets/".$file_name);
390 994 Ruebenwurz
391
/**********************************************************
392 944 Ruebenwurz
 *  - Reload all addons
393
 */
394
395
//delete modules
396
$database->query("DELETE FROM ".TABLE_PREFIX."addons WHERE type = 'module'");
397
// Load all modules
398
if($handle = opendir(WB_PATH.'/modules/')) {
399
	while(false !== ($file = readdir($handle))) {
400
		if($file != '' AND substr($file, 0, 1) != '.' AND $file != 'admin.php' AND $file != 'index.php') {
401
			load_module(WB_PATH.'/modules/'.$file);
402
		}
403
	}
404
	closedir($handle);
405
}
406
echo '<br />Modules reloaded<br />';
407
408
//delete templates
409
$database->query("DELETE FROM ".TABLE_PREFIX."addons WHERE type = 'template'");
410
// Load all templates
411
if($handle = opendir(WB_PATH.'/templates/')) {
412
	while(false !== ($file = readdir($handle))) {
413
		if($file != '' AND substr($file, 0, 1) != '.' AND $file != 'index.php') {
414
			load_template(WB_PATH.'/templates/'.$file);
415
		}
416
	}
417
	closedir($handle);
418
}
419
echo '<br />Templates reloaded<br />';
420
421
//delete languages
422
$database->query("DELETE FROM ".TABLE_PREFIX."addons WHERE type = 'language'");
423
// Load all languages
424
if($handle = opendir(WB_PATH.'/languages/')) {
425
	while(false !== ($file = readdir($handle))) {
426
		if($file != '' AND substr($file, 0, 1) != '.' AND $file != 'index.php') {
427
			load_language(WB_PATH.'/languages/'.$file);
428
		}
429
	}
430
	closedir($handle);
431
}
432
echo '<br />Languages reloaded<br />';
433
434
435
/**********************************************************
436 714 Ruebenwurz
 *  - End of upgrade script
437
 */
438 722 doc
echo '<p style="font-size:120%;"><strong>Congratulations: The upgrade script is finished ...</strong></p>';
439 882 Ruebenwurz
status_msg('<strong>Warning:</strong><br />Please delete the file <strong>upgrade-script.php</strong> via FTP before proceeding.', 'warning', 'div');
440 722 doc
// show buttons to go to the backend or frontend
441
echo '<br />';
442
if(defined('WB_URL')) {
443
	echo '<form action="'.WB_URL.'" target="_self">';
444 724 doc
	echo '<input type="submit" value="kick me to the Frontend" style="float:left;" />';
445 722 doc
	echo '</form>';
446 715 doc
}
447 722 doc
if(defined('ADMIN_URL')) {
448
	echo '<form action="'.ADMIN_URL.'" target="_self">';
449 724 doc
	echo '&nbsp;<input type="submit" value="kick me to the Backend" />';
450 722 doc
	echo '</form>';
451
}
452
echo '<p>&nbsp;</p>';
453 882 Ruebenwurz
454 552 thorn
?>
455 882 Ruebenwurz
456 715 doc
</div>
457 552 thorn
</body>
458 714 Ruebenwurz
</html>