Project

General

Profile

1
<?php
2

    
3
// $Id: save.php 110 2005-09-15 20:34:58Z stefan $
4

    
5
/*
6

    
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2005, Ryan Djurovich
9

    
10
 Website Baker is free software; you can redistribute it and/or modify
11
 it under the terms of the GNU General Public License as published by
12
 the Free Software Foundation; either version 2 of the License, or
13
 (at your option) any later version.
14

    
15
 Website Baker is distributed in the hope that it will be useful,
16
 but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 GNU General Public License for more details.
19

    
20
 You should have received a copy of the GNU General Public License
21
 along with Website Baker; if not, write to the Free Software
22
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23

    
24
*/
25

    
26
// Start a session
27
if(!defined('SESSION_STARTED')) {
28
	session_name('wb_session_id');
29
	session_start();
30
	define('SESSION_STARTED', true);
31
}
32

    
33
// Function to set error
34
function set_error($message) {
35
	global $_POST;
36
	if(isset($message) AND $message != '') {
37
		// Copy values entered into session so user doesn't have to re-enter everything
38
		if(isset($_POST['website_title'])) {
39
			$_SESSION['wb_url'] = $_POST['wb_url'];
40
			$_SESSION['wb_path'] = $_POST['wb_path'];
41
			$_SESSION['default_timezone'] = $_POST['default_timezone'];
42
			if(!isset($_POST['operating_system'])) {
43
				$_SESSION['operating_system'] = 'linux';
44
			} else {
45
				$_SESSION['operating_system'] = $_POST['operating_system'];
46
			}
47
			if(!isset($_POST['world_writeable'])) {
48
				$_SESSION['world_writeable'] = false;
49
			} else {
50
				$_SESSION['world_writeable'] = true;
51
			}
52
			$_SESSION['database_host'] = $_POST['database_host'];
53
			$_SESSION['database_username'] = $_POST['database_username'];
54
			$_SESSION['database_password'] = $_POST['database_password'];
55
			$_SESSION['database_name'] = $_POST['database_name'];
56
			$_SESSION['table_prefix'] = $_POST['table_prefix'];
57
			if(!isset($_POST['install_tables'])) {
58
				$_SESSION['install_tables'] = false;
59
			} else {
60
				$_SESSION['install_tables'] = true;
61
			}
62
			$_SESSION['website_title'] = $_POST['website_title'];
63
			$_SESSION['admin_username'] = $_POST['admin_username'];
64
			$_SESSION['admin_email'] = $_POST['admin_email'];
65
			$_SESSION['admin_password'] = $_POST['admin_password'];
66
		}
67
		// Set the message
68
		$_SESSION['message'] = $message;
69
		// Specify that session support is enabled
70
		$_SESSION['session_support'] = '<font class="good">Enabled</font>';
71
		// Redirect to first page again and exit
72
		header('Location: index.php?sessions_checked=true');
73
		exit();
74
	}
75
}
76

    
77
// Function to workout what the default permissions are for files created by the webserver
78
function default_file_mode($temp_dir) {
79
	$v = explode(".",PHP_VERSION);
80
	$v = $v[0].$v[1];
81
	if($v > 41 AND is_writable($temp_dir)) {
82
		$filename = $temp_dir.'/test_permissions.txt';
83
		$handle = fopen($filename, 'w');
84
		fwrite($handle, 'This file is to get the default file permissions');
85
		fclose($handle);
86
		$default_file_mode = '0'.substr(sprintf('%o', fileperms($filename)), -3);
87
		unlink($filename);
88
	} else {
89
		$default_file_mode = '0777';
90
	}
91
	return $default_file_mode;
92
}
93

    
94
// Function to workout what the default permissions are for directories created by the webserver
95
function default_dir_mode($temp_dir) {
96
	$v = explode(".",PHP_VERSION);
97
	$v = $v[0].$v[1];
98
	if($v > 41 AND is_writable($temp_dir)) {
99
		$dirname = $temp_dir.'/test_permissions/';
100
		mkdir($dirname);
101
		$default_dir_mode = '0'.substr(sprintf('%o', fileperms($dirname)), -3);
102
		rmdir($dirname);
103
	} else {
104
		$default_dir_mode = '0777';
105
	}
106
	return $default_dir_mode;
107
}
108

    
109
function add_slashes($input) {
110
		if ( get_magic_quotes_gpc() || ( !is_string($input) ) ) {
111
			return $input;
112
		}
113
		$output = addslashes($input);
114
		return $output;
115
	}
116

    
117
// Begin check to see if form was even submitted
118
// Set error if no post vars found
119
if(!isset($_POST['website_title'])) {
120
	set_error('Please fill-in the form below');
121
}
122
// End check to see if form was even submitted
123

    
124
// Begin path and timezone details code
125
// Check if user has entered the installation path
126
if(!isset($_POST['wb_path']) OR $_POST['wb_path'] == '') {
127
	set_error('Please enter an absolute path');
128
} else {
129
	$wb_path = $_POST['wb_path'];
130
}
131
// Check if user has entered the installation url
132
if(!isset($_POST['wb_url']) OR $_POST['wb_url'] == '') {
133
	set_error('Please enter an absolute URL');
134
} else {
135
	$wb_url = $_POST['wb_url'];
136
}
137
// Remove any slashes at the end of the URL and path
138
if(substr($wb_url, strlen($wb_url)-1, 1) == "/") {
139
	$wb_url = substr($wb_url, 0, strlen($wb_url)-1);
140
}
141
if(substr($wb_path, strlen($wb_path)-1, 1) == "/") {
142
	$wb_path = substr($wb_path, 0, strlen($wb_path)-1);
143
}
144
if(substr($wb_url, strlen($wb_url)-1, 1) == "\\") {
145
	$wb_url = substr($wb_url, 0, strlen($wb_url)-1);
146
}
147
if(substr($wb_path, strlen($wb_path)-1, 1) == "\\") {
148
	$wb_path = substr($wb_path, 0, strlen($wb_path)-1);
149
}
150
if(substr($wb_url, strlen($wb_url)-1, 1) == "/") {
151
	$wb_url = substr($wb_url, 0, strlen($wb_url)-1);
152
}
153
if(substr($wb_path, strlen($wb_path)-1, 1) == "/") {
154
	$wb_path = substr($wb_path, 0, strlen($wb_path)-1);
155
}
156
if(substr($wb_url, strlen($wb_url)-1, 1) == "\\") {
157
	$wb_url = substr($wb_url, 0, strlen($wb_url)-1);
158
}
159
if(substr($wb_path, strlen($wb_path)-1, 1) == "\\") {
160
	$wb_path = substr($wb_path, 0, strlen($wb_path)-1);
161
}
162
// Get the default time zone
163
if(!isset($_POST['default_timezone']) OR !is_numeric($_POST['default_timezone'])) {
164
	set_error('Please select a valid default timezone');
165
} else {
166
	$default_timezone = $_POST['default_timezone']*60*60;
167
}
168
// End path and timezone details code
169

    
170
// Begin operating system specific code
171
// Get operating system
172
if(!isset($_POST['operating_system']) OR $_POST['operating_system'] != 'linux' AND $_POST['operating_system'] != 'windows') {
173
	set_error('Please select a valid operating system');
174
} else {
175
	$operating_system = $_POST['operating_system'];
176
}
177
// Work-out file permissions
178
if($operating_system == 'windows') {
179
	$file_mode = '0777';
180
	$dir_mode = '0777';
181
} elseif(isset($_POST['world_writeable']) AND $_POST['world_writeable'] == 'true') {
182
	$file_mode = '0777';
183
	$dir_mode = '0777';
184
} else {
185
	$file_mode = default_file_mode('../temp');
186
	$dir_mode = default_dir_mode('../temp');
187
}
188
// End operating system specific code
189

    
190
// Begin database details code
191
// Check if user has entered a database host
192
if(!isset($_POST['database_host']) OR $_POST['database_host'] == '') {
193
	set_error('Please enter a database host name');
194
} else {
195
	$database_host = $_POST['database_host'];
196
}
197
// Check if user has entered a database username
198
if(!isset($_POST['database_username']) OR $_POST['database_username'] == '') {
199
	set_error('Please enter a database username');
200
} else {
201
	$database_username = $_POST['database_username'];
202
}
203
// Check if user has entered a database password
204
if(!isset($_POST['database_password'])) {
205
	set_error('Please enter a database password');
206
} else {
207
	$database_password = $_POST['database_password'];
208
}
209
// Check if user has entered a database name
210
if(!isset($_POST['database_name']) OR $_POST['database_name'] == '') {
211
	set_error('Please enter a database name');
212
} else {
213
	$database_name = $_POST['database_name'];
214
}
215
// Get table prefix
216
$table_prefix = $_POST['table_prefix'];
217
// Find out if the user wants to install tables and data
218
if(isset($_POST['install_tables']) AND $_POST['install_tables'] == 'true') {
219
	$install_tables = true;
220
} else {
221
	$install_tables = false;
222
}
223
// End database details code
224

    
225
// Begin website title code
226
// Get website title
227
if(!isset($_POST['website_title']) OR $_POST['website_title'] == '') {
228
	set_error('Please enter a website title');
229
} else {
230
	$website_title = add_slashes($_POST['website_title']);
231
}
232
// End website title code
233

    
234
// Begin admin user details code
235
// Get admin username
236
if(!isset($_POST['admin_username']) OR $_POST['admin_username'] == '') {
237
	set_error('Please enter a username for the Administrator account');
238
} else {
239
	$admin_username = $_POST['admin_username'];
240
}
241
// Get admin email and validate it
242
if(!isset($_POST['admin_email']) OR $_POST['admin_email'] == '') {
243
	set_error('Please enter an email for the Administrator account');
244
} else {
245
	if(eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $_POST['admin_email'])) {
246
		$admin_email = $_POST['admin_email'];
247
	} else {
248
		set_error('Please enter a valid email address for the Administrator account');
249
	}
250
}
251
// Get the two admin passwords entered, and check that they match
252
if(!isset($_POST['admin_password']) OR $_POST['admin_password'] == '') {
253
	set_error('Please enter a password for the Administrator account');
254
} else {
255
	$admin_password = $_POST['admin_password'];
256
}
257
if(!isset($_POST['admin_repassword']) OR $_POST['admin_repassword'] == '') {
258
	set_error('Please make sure you re-enter the password for the Administrator account');
259
} else {
260
	$admin_repassword = $_POST['admin_repassword'];
261
}
262
if($admin_password != $admin_repassword) {
263
	set_error('Sorry, the two Administrator account passwords you entered do not match');
264
}
265
// End admin user details code
266

    
267
// Try and write settings to config file
268
$config_content = "" .
269
"<?php\n".
270
"\n".
271
"define('DB_TYPE', 'mysql');\n".
272
"define('DB_HOST', '$database_host');\n".
273
"define('DB_USERNAME', '$database_username');\n".
274
"define('DB_PASSWORD', '$database_password');\n".
275
"define('DB_NAME', '$database_name');\n".
276
"define('TABLE_PREFIX', '$table_prefix');\n".
277
"\n".
278
"define('WB_PATH', '$wb_path');\n".
279
"define('WB_URL', '$wb_url');\n".
280
"define('ADMIN_PATH', '$wb_path/admin');\n".
281
"define('ADMIN_URL', '$wb_url/admin');\n".
282
"\n".
283
"require_once(WB_PATH.'/framework/initialize.php');\n".
284
"?>";
285

    
286
$config_filename = '../config.php';
287

    
288
// Check if the file exists and is writable first.
289
if(file_exists($config_filename) AND is_writable($config_filename)) {
290
	if(!$handle = fopen($config_filename, 'w')) {
291
		set_error("Cannot open the configuration file ($config_filename)");
292
	} else {
293
		if (fwrite($handle, $config_content) === FALSE) {
294
			set_error("Cannot write to the configuration file ($config_filename)");
295
		}
296
		// Close file
297
		fclose($handle);
298
	}
299
} else {
300
	set_error("The configuration file $config_filename is not writable. Change its permissions so it is, then re-run step 4.");
301
}
302

    
303
// Include configuration file
304
define('DB_TYPE', 'mysql');
305
define('DB_HOST', $database_host);
306
define('DB_USERNAME', $database_username);
307
define('DB_PASSWORD', $database_password);
308
define('DB_NAME', $database_name);
309
define('TABLE_PREFIX', $table_prefix);
310
define('WB_PATH', $wb_path);
311
define('WB_URL', $wb_url);
312
define('ADMIN_PATH', $wb_path.'/admin');
313
define('ADMIN_URL', $wb_url.'/admin');
314

    
315
//require('../config.php');
316

    
317
// Check if the user has entered a correct path
318
if(!file_exists(WB_PATH.'/framework/class.admin.php')) {
319
	set_error('It appears the Absolute path that you entered is incorrect');
320
}
321

    
322
// Try connecting to database	
323
if(!mysql_connect(DB_HOST, DB_USERNAME, DB_PASSWORD)) {
324
	set_error('Database host name, username and/or password incorrect. MySQL Error:<br />'.mysql_error());
325
}
326

    
327
// Try to create the database
328
mysql_query('CREATE DATABASE '.$database_name);
329

    
330
// Close the mysql connection
331
mysql_close();
332

    
333
// Include WB functions file
334
require_once(WB_PATH.'/framework/functions.php');
335

    
336
// Re-connect to the database, this time using in-build database class
337
require_once(WB_PATH.'/framework/class.login.php');
338
$database=new database();
339

    
340
// Check if we should install tables
341
if($install_tables == true) {
342
	
343
	// Remove tables if they exist
344

    
345
	// Pages table
346
	$pages = "DROP TABLE IF EXISTS `".TABLE_PREFIX."pages`";
347
	$database->query($pages);
348
	// Sections table
349
	$sections = "DROP TABLE IF EXISTS `".TABLE_PREFIX."sections`";
350
	$database->query($sections);
351
	// Settings table
352
	$settings = "DROP TABLE IF EXISTS `".TABLE_PREFIX."settings`";
353
	$database->query($settings);
354
	// Users table
355
	$users = "DROP TABLE IF EXISTS `".TABLE_PREFIX."users`";
356
	$database->query($users);
357
	// Groups table
358
	$groups = "DROP TABLE IF EXISTS `".TABLE_PREFIX."groups`";
359
	$database->query($groups);
360
	// Search table
361
	$search = "DROP TABLE IF EXISTS `".TABLE_PREFIX."search`";
362
	$database->query($search);
363
	// Modules table
364
	$modules = "DROP TABLE IF EXISTS `".TABLE_PREFIX."modules`";
365
	$database->query($modules);
366
				
367
	// Try installing tables
368
	
369
	// Pages table
370
	$pages = 'CREATE TABLE `'.TABLE_PREFIX.'pages` ( `page_id` INT NOT NULL auto_increment,'
371
	       . ' `parent` INT NOT NULL ,'
372
	       . ' `root_parent` INT NOT NULL ,'
373
	       . ' `level` INT NOT NULL ,'
374
	       . ' `link` TEXT NOT NULL ,'
375
	       . ' `target` VARCHAR( 7 ) NOT NULL ,'
376
	       . ' `page_title` VARCHAR( 255 ) NOT NULL ,'
377
	       . ' `menu_title` VARCHAR( 255 ) NOT NULL ,'
378
	       . ' `description` TEXT NOT NULL ,'
379
	       . ' `keywords` TEXT NOT NULL ,'
380
	       . ' `page_trail` TEXT NOT NULL ,'
381
	       . ' `template` VARCHAR( 255 ) NOT NULL ,'
382
	       . ' `visibility` VARCHAR( 255 ) NOT NULL ,'
383
	       . ' `position` INT NOT NULL ,'
384
	       . ' `menu` INT NOT NULL ,'
385
	       . ' `language` VARCHAR( 5 ) NOT NULL ,'
386
	       . ' `searching` INT NOT NULL ,'
387
	       . ' `admin_groups` TEXT NOT NULL ,'
388
	       . ' `admin_users` TEXT NOT NULL ,'
389
	       . ' `viewing_groups` TEXT NOT NULL ,'
390
	       . ' `viewing_users` TEXT NOT NULL ,'
391
	       . ' `modified_when` INT NOT NULL ,'
392
	       . ' `modified_by` INT NOT NULL ,'
393
	       . ' PRIMARY KEY ( `page_id` ) )'
394
	       . ' ';
395
	$database->query($pages);
396
	
397
	// Sections table
398
	$pages = 'CREATE TABLE `'.TABLE_PREFIX.'sections` ( `section_id` INT NOT NULL auto_increment,'
399
	       . ' `page_id` INT NOT NULL ,'
400
	       . ' `position` INT NOT NULL ,'
401
	       . ' `module` VARCHAR( 255 ) NOT NULL ,'
402
	       . ' `block` VARCHAR( 255 ) NOT NULL ,'
403
	       . ' PRIMARY KEY ( `section_id` ) )'
404
	       . ' ';
405
	$database->query($pages);
406
	
407
	require(WB_PATH.'/admin/interface/version.php');
408
	
409
	// Settings table
410
	$settings="CREATE TABLE `".TABLE_PREFIX."settings` ( `setting_id` INT NOT NULL auto_increment,
411
		`name` VARCHAR( 255 ) NOT NULL ,
412
		`value` TEXT NOT NULL ,
413
		PRIMARY KEY ( `setting_id` ) )";
414
	$database->query($settings);
415
	$settings_rows=	"INSERT INTO `".TABLE_PREFIX."settings` VALUES "
416
	." ('', 'wb_version', '".VERSION."'),"
417
	." ('', 'website_title', '$website_title'),"
418
	." ('', 'website_description', ''),"
419
	." ('', 'website_keywords', ''),"
420
	." ('', 'website_header', ''),"
421
	." ('', 'website_footer', ''),"
422
	." ('', 'wysiwyg_style', 'font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;'),"
423
	." ('', 'rename_files_on_upload', 'php,asp,phpx,aspx'),"
424
	." ('', 'er_level', ''),"
425
	." ('', 'default_language', 'EN'),"
426
	." ('', 'app_name', 'wb'),"
427
	." ('', 'default_timezone', '0'),"
428
	." ('', 'default_date_format', 'M d Y'),"
429
	." ('', 'default_time_format', 'g:i A'),"
430
	." ('', 'home_folders', 'true'),"
431
	." ('', 'default_template', 'round'),"
432
	." ('', 'multiple_menus', 'false'),"
433
	." ('', 'page_level_limit', '4'),"
434
	." ('', 'intro_page', 'false'),"
435
	." ('', 'page_trash', 'disabled'),"
436
	." ('', 'homepage_redirection', 'false'),"
437
	." ('', 'page_languages', 'false'),"
438
	." ('', 'wysiwyg_editor', 'htmlarea'),"
439
	." ('', 'manage_sections', 'true'),"
440
	." ('', 'section_blocks', 'false'),"
441
	." ('', 'smart_login', 'false'),"
442
	." ('', 'frontend_login', 'false'),"
443
	." ('', 'frontend_signup', 'false'),"
444
	." ('', 'server_email', '$admin_email'),"
445
	." ('', 'search', 'public'),"
446
	." ('', 'page_extension', '.php'),"
447
	." ('', 'page_spacer', '-'),"
448
	." ('', 'pages_directory', '/pages'),"
449
	." ('', 'media_directory', '/media'),"
450
	." ('', 'operating_system', '$operating_system'),"
451
	." ('', 'string_file_mode', '$file_mode'),"
452
	." ('', 'string_dir_mode', '$dir_mode');";
453
	$database->query($settings_rows);
454
	
455
	
456
	// Users table
457
	$users = 'CREATE TABLE `'.TABLE_PREFIX.'users` ( `user_id` INT NOT NULL auto_increment,'
458
	       . ' `group_id` INT NOT NULL ,'
459
	       . ' `active` INT NOT NULL ,'
460
	       . ' `username` VARCHAR( 255 ) NOT NULL ,'
461
	       . ' `password` VARCHAR( 255 ) NOT NULL ,'
462
	       . ' `remember_key` VARCHAR( 255 ) NOT NULL ,'
463
	       . ' `last_reset` INT NOT NULL ,'
464
	       . ' `display_name` VARCHAR( 255 ) NOT NULL ,'
465
	       . ' `email` TEXT NOT NULL ,'
466
	       . ' `timezone` INT NOT NULL ,'
467
	       . ' `date_format` VARCHAR( 255 ) NOT NULL ,'
468
	       . ' `time_format` VARCHAR( 255 ) NOT NULL ,'
469
	       . ' `language` VARCHAR( 5 ) NOT NULL ,'
470
	       . ' `home_folder` TEXT NOT NULL ,'
471
	       . ' `login_when` INT NOT NULL ,'
472
	       . ' `login_ip` VARCHAR( 15 ) NOT NULL ,'
473
	       . ' PRIMARY KEY ( `user_id` ) )'
474
	       . ' ';
475
	$database->query($users);
476
	
477
	// Groups table
478
	$groups = 'CREATE TABLE `'.TABLE_PREFIX.'groups` ( `group_id` INT NOT NULL auto_increment,'
479
	        . ' `name` VARCHAR( 255 ) NOT NULL ,'
480
	        . ' `system_permissions` TEXT NOT NULL ,'
481
	        . ' `module_permissions` TEXT NOT NULL ,'
482
	        . ' `template_permissions` TEXT NOT NULL ,'
483
	        . ' PRIMARY KEY ( `group_id` ) )'
484
	        . ' ';
485
	$database->query($groups);
486
	
487
	// Search settings table
488
	$search = 'CREATE TABLE `'.TABLE_PREFIX.'search` ( `search_id` INT NOT NULL auto_increment,'
489
	        . ' `name` VARCHAR( 255 ) NOT NULL ,'
490
	        . ' `value` TEXT NOT NULL ,'
491
	        . ' `extra` TEXT NOT NULL ,'
492
	        . ' PRIMARY KEY ( `search_id` ) )'
493
	        . ' ';
494
	$database->query($search);
495
	
496
	// Modules table
497
	$modules = 'CREATE TABLE `'.TABLE_PREFIX.'modules` ( '
498
	.'`id` INT NOT NULL auto_increment ,'
499
	.'`name` VARCHAR( 255 ) NOT NULL ,'
500
	.'`type` VARCHAR( 255 ) NOT NULL ,'
501
	.'`directory` VARCHAR( 255 ) NOT NULL ,'
502
	.' PRIMARY KEY ( `id` ) ); ';
503
	
504
	$database->query($modules);
505

    
506
	$search = 'CREATE TABLE `'.TABLE_PREFIX.'modules` ( '
507
	        . ' `name` VARCHAR( 255 ) NOT NULL ,'
508
	        . ' `type` VARCHAR( 255 ) NOT NULL ,'
509
	        . ' PRIMARY KEY ( `name` ) )'
510
	        . ' ';
511
	$database->query($search);
512

    
513

    
514
	// Insert default data
515
	
516
	// Admin group
517
	$full_system_permissions = 'pages,pages_view,pages_add,pages_add_l0,pages_settings,pages_modify,pages_intro,pages_delete,media,media_view,media_upload,media_rename,media_delete,media_create,addons,modules,modules_view,modules_install,modules_uninstall,templates,templates_view,templates_install,templates_uninstall,languages,languages_view,languages_install,languages_uninstall,settings,settings_basic,settings_advanced,access,users,users_view,users_add,users_modify,users_delete,groups,groups_view,groups_add,groups_modify,groups_delete';
518
	$insert_admin_group = "INSERT INTO `".TABLE_PREFIX."groups` VALUES ('1', 'Administrators', '$full_system_permissions', '', '')";
519
	$database->query($insert_admin_group);
520
	// Admin user
521
	$insert_admin_user = "INSERT INTO `".TABLE_PREFIX."users` (user_id,group_id,active,username,password,email,display_name) VALUES ('1','1','1','$admin_username','".md5($admin_password)."','$admin_email','Administrator')";
522
	$database->query($insert_admin_user);
523
	
524
	// Search header
525
	$search_header = addslashes('
526
<h1>Search</h1>
527

    
528
<form name="search" action="[WB_URL]/search/index[PAGE_EXTENSION]" method="post">
529
<table cellpadding="3" cellspacing="0" border="0" width="500">
530
<tr>
531
<td>
532
<input type="text" name="string" value="[SEARCH_STRING]" style="width: 100%;" />
533
</td>
534
<td width="150">
535
<input type="submit" value="[TEXT_SEARCH]" style="width: 100%;" />
536
</td>
537
</tr>
538
<tr>
539
<td colspan="2">
540
<input type="radio" name="match" id="match_all" value="all"[ALL_CHECKED] />
541
<a href="javascript: toggle_radio(\'match_all\');">[TEXT_ALL_WORDS]</a>
542
<input type="radio" name="match" id="match_any" value="any"[ANY_CHECKED] />
543
<a href="javascript: toggle_radio(\'match_any\');">[TEXT_ANY_WORDS]</a>
544
<input type="radio" name="match" id="match_exact" value="exact"[EXACT_CHECKED] />
545
<a href="javascript: toggle_radio(\'match_exact\');">[TEXT_EXACT_MATCH]</a>
546
</td>
547
</tr>
548
</table>
549

    
550
</form>
551

    
552
<hr />
553
	');
554
	$insert_search_header = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'header', '$search_header', '')";
555
	$database->query($insert_search_header);
556
	// Search footer
557
	$search_footer = addslashes('');
558
	$insert_search_footer = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'footer', '$search_footer', '')";
559
	$database->query($insert_search_footer);
560
	// Search results header
561
	$search_results_header = addslashes(''.
562
'[TEXT_RESULTS_FOR] \'<b>[SEARCH_STRING]</b>\':
563
<table cellpadding="2" cellspacing="0" border="0" width="100%" style="padding-top: 10px;">');
564
	$insert_search_results_header = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'results_header', '$search_results_header', '')";
565
	$database->query($insert_search_results_header);
566
	// Search results loop
567
	$search_results_loop = addslashes(''.
568
'<tr style="background-color: #F0F0F0;">
569
<td><a href="[LINK]">[TITLE]</a></td>
570
<td align="right">[TEXT_LAST_UPDATED_BY] [DISPLAY_NAME] ([USERNAME]) [TEXT_ON] [DATE]</td>
571
</tr>
572
<tr><td colspan="2" style="text-align: justify; padding-bottom: 10px;">[DESCRIPTION]</td></tr>');
573
$insert_search_results_loop = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'results_loop', '$search_results_loop', '')";
574
$database->query($insert_search_results_loop);
575
// Search results footer
576
$search_results_footer = addslashes("</table>");
577
$insert_search_results_footer = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'results_footer', '$search_results_footer', '')";
578
$database->query($insert_search_results_footer);
579
// Search no results
580
$search_no_results = addslashes('<br />No results found');
581
	$insert_search_no_results = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'no_results', '$search_no_results', '')";
582
	$database->query($insert_search_no_results);
583
	// Search template
584
	$database->query("INSERT INTO `".TABLE_PREFIX."search` (name) VALUES ('template')");
585
	
586
	require_once(WB_PATH.'/framework/initialize.php');
587
	$wb = new wb();
588
	
589
	// Include the pre-installed module install scripts
590
	require(WB_PATH.'/modules/wysiwyg/install.php');
591
	require(WB_PATH.'/modules/code/install.php');
592
	require(WB_PATH.'/modules/news/install.php');
593
	require(WB_PATH.'/modules/form/install.php');
594
	require(WB_PATH.'/modules/wrapper/install.php');
595
	
596
	// Check if there was a database error
597
	if($database->is_error()) {
598
		set_error($database->get_error());
599
	}
600
	
601
}
602

    
603
// Log the user in and go to Website Baker Administration
604
$thisApp = new Login(
605
							array(
606
									"MAX_ATTEMPS" => "50",
607
									"WARNING_URL" => ADMIN_URL."/login/warning.html",
608
									"USERNAME_FIELDNAME" => 'admin_username',
609
									"PASSWORD_FIELDNAME" => 'admin_password',
610
									"REMEMBER_ME_OPTION" => SMART_LOGIN,
611
									"MIN_USERNAME_LEN" => "2",
612
									"MIN_PASSWORD_LEN" => "2",
613
									"MAX_USERNAME_LEN" => "30",
614
									"MAX_PASSWORD_LEN" => "30",
615
									'LOGIN_URL' => ADMIN_URL."/login/index.php",
616
									'DEFAULT_URL' => ADMIN_URL."/start/index.php",
617
									'TEMPLATE_DIR' => ADMIN_PATH."/login",
618
									'TEMPLATE_FILE' => "template.html",
619
									'FRONTEND' => false,
620
									'FORGOTTEN_DETAILS_APP' => ADMIN_URL."/login/forgot/index.php",
621
									'USERS_TABLE' => TABLE_PREFIX."users",
622
									'GROUPS_TABLE' => TABLE_PREFIX."groups",
623
							)
624
					);
625

    
626
?>
(2-2/3)