Project

General

Profile

1
<?php
2
/**
3
 *
4
 * @category        backend
5
 * @package         install
6
 * @author          Ryan Djurovich, WebsiteBaker Project
7
 * @copyright       2009-2012, WebsiteBaker Org. e.V.
8
 * @link			http://www.websitebaker2.org/
9
 * @license         http://www.gnu.org/licenses/gpl.html
10
 * @platform        WebsiteBaker 2.8.x
11
 * @requirements    PHP 5.2.2 and higher
12
 * @version      	$Id: save.php 1789 2012-10-14 10:17:38Z Luisehahne $
13
 * @filesource		$HeadURL:  $
14
 * @lastmodified    $Date: $
15
 *
16
 */
17

    
18
$debug = true;
19

    
20
if (true === $debug) {
21
	ini_set('display_errors', 1);
22
	error_reporting(E_ALL);
23
}
24
// Start a session
25
if(!defined('SESSION_STARTED')) {
26
	session_name('wb_session_id');
27
	session_start();
28
	define('SESSION_STARTED', true);
29
}
30
// get random-part for session_name()
31
list($usec,$sec) = explode(' ',microtime());
32
srand((float)$sec+((float)$usec*100000));
33
$session_rand = rand(1000,9999);
34
if(!class_exists('WbAutoloader', false)) {
35
	include(dirname(dirname(__FILE__)).'/framework/WbAutoloader.php');
36
}
37
WbAutoloader::doRegister(array('admin'=>'a', 'modules'=>'m'));
38

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

    
89
// Function to workout what the default permissions are for files created by the webserver
90
function default_file_mode($temp_dir) {
91
	$v = explode(".",PHP_VERSION);
92
	$v = $v[0].$v[1];
93
	if($v > 41 AND is_writable($temp_dir)) {
94
		$filename = $temp_dir.'/test_permissions.txt';
95
		$handle = fopen($filename, 'w');
96
		fwrite($handle, 'This file is to get the default file permissions');
97
		fclose($handle);
98
		$default_file_mode = '0'.substr(sprintf('%o', fileperms($filename)), -3);
99
		unlink($filename);
100
	} else {
101
		$default_file_mode = '0777';
102
	}
103
	return $default_file_mode;
104
}
105

    
106
// Function to workout what the default permissions are for directories created by the webserver
107
function default_dir_mode($temp_dir) {
108
	$v = explode(".",PHP_VERSION);
109
	$v = $v[0].$v[1];
110
	if($v > 41 AND is_writable($temp_dir)) {
111
		$dirname = $temp_dir.'/test_permissions/';
112
		mkdir($dirname);
113
		$default_dir_mode = '0'.substr(sprintf('%o', fileperms($dirname)), -3);
114
		rmdir($dirname);
115
	} else {
116
		$default_dir_mode = '0777';
117
	}
118
	return $default_dir_mode;
119
}
120

    
121
function add_slashes($input) {
122
	if ( get_magic_quotes_gpc() || ( !is_string($input) ) ) {
123
		return $input;
124
	}
125
	$output = addslashes($input);
126
	return $output;
127
}
128

    
129
// Begin check to see if form was even submitted
130
// Set error if no post vars found
131
if(!isset($_POST['website_title'])) {
132
	set_error('Please fill-in the wesite title below');
133
}
134
// End check to see if form was even submitted
135

    
136
// Begin path and timezone details code
137

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

    
165
// Get the default language
166
$allowed_languages = array('BG','CA', 'CS', 'DA', 'DE', 'EN', 'ES', 'ET', 'FI', 'FR', 'HR', 'HU', 'IT', 'LV', 'NL', 'NO', 'PL', 'PT', 'RU','SE','SK','TR');
167
if(!isset($_POST['default_language']) OR !in_array($_POST['default_language'], $allowed_languages)) {
168
	set_error('Please select a valid default backend language','default_language');
169
} else {
170
	$default_language = $_POST['default_language'];
171
	// make sure the selected language file exists in the language folder
172
	if(!file_exists('../languages/' .$default_language .'.php')) {
173
		set_error('The language file: \'' .$default_language .'.php\' is missing. Upload file to language folder or choose another language','default_language');
174
	}
175
}
176
// End default language details code
177

    
178
// Begin operating system specific code
179
// Get operating system
180
if(!isset($_POST['operating_system']) OR $_POST['operating_system'] != 'linux' AND $_POST['operating_system'] != 'windows') {
181
	set_error('Please select a valid operating system');
182
} else {
183
	$operating_system = $_POST['operating_system'];
184
}
185
// Work-out file permissions
186
if($operating_system == 'windows') {
187
	$file_mode = '0777';
188
	$dir_mode = '0777';
189
} elseif(isset($_POST['world_writeable']) AND $_POST['world_writeable'] == 'true') {
190
	$file_mode = '0777';
191
	$dir_mode = '0777';
192
} else {
193
	$file_mode = default_file_mode('../temp');
194
	$dir_mode = default_dir_mode('../temp');
195
}
196
// End operating system specific code
197

    
198
// Begin database details code
199
// Check if user has entered a database host
200
if(!isset($_POST['database_host']) OR $_POST['database_host'] == '') {
201
	set_error('Please enter a database host name', 'database_host');
202
} else {
203
	$database_host = $_POST['database_host'];
204
 }
205
// Check if user has entered a database name
206
if(!isset($_POST['database_name']) OR $_POST['database_name'] == '') {
207
	set_error('Please enter a database name', 'database_name');
208
} else {
209
	// make sure only allowed characters are specified
210
	if(!preg_match('/^[a-z0-9_-]*$/i', $_POST['database_name'])) {
211
		// contains invalid characters (only a-z, A-Z, 0-9 and _ allowed to avoid problems with table/field names)
212
		set_error('Only characters a-z, A-Z, 0-9, - and _ allowed in database name.', 'database_name');
213
	}
214
	$database_name = $_POST['database_name'];
215
}
216
// Get table prefix
217
if(!preg_match('/^[a-z0-9_]*$/i', $_POST['table_prefix'])) {
218
	// contains invalid characters (only a-z, A-Z, 0-9 and _ allowed to avoid problems with table/field names)
219
	set_error('Only characters a-z, A-Z, 0-9 and _ allowed in table_prefix.', 'table_prefix');
220
} else {
221
	$table_prefix = $_POST['table_prefix'];
222
}
223

    
224
// Check if user has entered a database username
225
if(!isset($_POST['database_username']) OR $_POST['database_username'] == '') {
226
	set_error('Please enter a database username','database_username');
227
} else {
228
	$database_username = $_POST['database_username'];
229
}
230
// Check if user has entered a database password
231
if(!isset($_POST['database_password'])) {
232
	set_error('Please enter a database password', 'database_password');
233
} else {
234
	$database_password = $_POST['database_password'];
235
}
236

    
237
// Find out if the user wants to install tables and data
238
$install_tables = ((isset($_POST['install_tables']) AND $_POST['install_tables'] == 'true'));
239
// End database details code
240

    
241
// Begin website title code
242
// Get website title
243
if(!isset($_POST['website_title']) OR $_POST['website_title'] == '') {
244
	set_error('Please enter a website title', 'website_title');
245
} else {
246
	$website_title = add_slashes($_POST['website_title']);
247
}
248
// End website title code
249

    
250
// Begin admin user details code
251
// Get admin username
252
if(!isset($_POST['admin_username']) OR $_POST['admin_username'] == '') {
253
	set_error('Please enter a username for the Administrator account','admin_username');
254
} else {
255
	$admin_username = $_POST['admin_username'];
256
}
257
// Get admin email and validate it
258
if(!isset($_POST['admin_email']) OR $_POST['admin_email'] == '') {
259
	set_error('Please enter an email for the Administrator account','admin_email');
260
} else {
261
	if(preg_match('/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$/i', $_POST['admin_email'])) {
262
		$admin_email = $_POST['admin_email'];
263
	} else {
264
		set_error('Please enter a valid email address for the Administrator account','admin_email');
265
	}
266
}
267
// Get the two admin passwords entered, and check that they match
268
if(!isset($_POST['admin_password']) OR $_POST['admin_password'] == '') {
269
	set_error('Please enter a password for the Administrator account','admin_password');
270
} else {
271
	$admin_password = $_POST['admin_password'];
272
}
273
if(!isset($_POST['admin_repassword']) OR $_POST['admin_repassword'] == '') {
274
	set_error('Please make sure you re-enter the password for the Administrator account','admin_repassword');
275
} else {
276
	$admin_repassword = $_POST['admin_repassword'];
277
}
278
if($admin_password != $admin_repassword) {
279
	set_error('Sorry, the two Administrator account passwords you entered do not match','admin_repassword');
280
}
281
// End admin user details code
282

    
283
// Try and write settings to config file
284
$config_content = "" .
285
"<?php\n".
286
"\n".
287
"define('DEBUG', false);\n".
288
"define('DB_TYPE', 'mysql');\n".
289
"define('DB_HOST', '$database_host');\n".
290
"define('DB_NAME', '$database_name');\n".
291
"define('DB_USERNAME', '$database_username');\n".
292
"define('DB_PASSWORD', '$database_password');\n".
293
"define('TABLE_PREFIX', '$table_prefix');\n".
294
"\n".
295
"define('WB_URL', '$wb_url');\n".
296
"define('ADMIN_DIRECTORY', 'admin'); // no leading/trailing slash or backslash!! A simple directory only!!\n".
297
"\n".
298
"require_once(dirname(__FILE__).'/framework/initialize.php');\n".
299
"\n";
300

    
301
$config_filename = '../config.php';
302
// Check if the file exists and is writable first.
303
if(file_exists($config_filename) AND is_writable($config_filename)) {
304
	if(!$handle = fopen($config_filename, 'w')) {
305
		set_error("Cannot open the configuration file ($config_filename)");
306
	} else {
307
		if (fwrite($handle, $config_content) === FALSE) {
308
			set_error("Cannot write to the configuration file ($config_filename)");
309
		}
310
		// Close file
311
		fclose($handle);
312
	}
313
} else {
314
	set_error("The configuration file $config_filename is not writable. Change its permissions so it is, then re-run step 4.");
315
}
316

    
317
// Define configuration vars
318
define('DEBUG', false);
319
define('DB_TYPE', 'mysql');
320
define('DB_HOST', $database_host);
321
define('DB_NAME', $database_name);
322
define('DB_USERNAME', $database_username);
323
define('DB_PASSWORD', $database_password);
324
define('TABLE_PREFIX', $table_prefix);
325
define('WB_PATH', dirname(dirname(__FILE__)));
326
define('WB_URL', $wb_url);
327
define('ADMIN_DIRECTORY', 'admin');
328
define('ADMIN_PATH', WB_PATH.'/'.ADMIN_DIRECTORY);
329
define('ADMIN_URL', $wb_url.'/'.ADMIN_DIRECTORY);
330

    
331
// Check if the user has entered a correct path
332
if(!file_exists(WB_PATH.'/framework/class.admin.php')) {
333
	set_error('It appears the Absolute path that you entered is incorrect');
334
}
335
	$sSqlUrl = DB_TYPE.'://'.DB_USERNAME.':'.DB_PASSWORD.'@'.DB_HOST.'/'.DB_NAME;
336
	$database = WbDatabase::getInstance();
337
	$database->doConnect($sSqlUrl);
338

    
339
	$sSecMod = (defined('SECURE_FORM_MODULE') && SECURE_FORM_MODULE != '') ? '.'.SECURE_FORM_MODULE : '';
340
	$sSecMod = WB_PATH.'/framework/SecureForm'.$sSecMod.'.php';
341
	require_once($sSecMod);
342
	require_once(WB_PATH.'/framework/class.admin.php');
343

    
344
// Dummy class to allow modules' install scripts to call $admin->print_error
345
	class admin_dummy extends admin
346
	{
347
		var $error='';
348
		function print_error($message, $link = 'index.php', $auto_footer = true)
349
		{
350
			$this->error=$message;
351
		}
352
	}
353
// Include WB functions file
354
	require_once(WB_PATH.'/framework/functions.php');
355
// Re-connect to the database, this time using in-build database class
356
	require_once(WB_PATH.'/framework/class.login.php');
357
// Check if we should install tables
358

    
359
	$sql = 'SHOW TABLES LIKE \''.str_replace('_', '\_', TABLE_PREFIX).'%\'';
360
	$aTables = array();
361
	if(($oTables = $database->query($sql))) {
362
		while($aTable = $oTables->fetchRow()) {
363
			$aTables[] = $aTable[0];
364
		}
365
	}
366
	$sTableList = implode(', ', $aTables);
367
	if($sTableList != '') {
368
		$database->query('DROP TABLE '.$sTableList);
369
	}
370
	// Try installing tables
371
	// Pages table
372
	$pages = 'CREATE TABLE `'.TABLE_PREFIX.'pages` ( `page_id` INT NOT NULL auto_increment,'
373
				. ' `parent` INT NOT NULL DEFAULT \'0\','
374
				. ' `root_parent` INT NOT NULL DEFAULT \'0\','
375
				. ' `level` INT NOT NULL DEFAULT \'0\','
376
				. ' `link` VARCHAR( 255 ) NOT NULL,'
377
				. ' `target` VARCHAR( 7 ) NOT NULL DEFAULT \'\' ,'
378
				. ' `page_title` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
379
				. ' `page_icon` VARCHAR( 512 ) NOT NULL DEFAULT \'\' ,'
380
				. ' `menu_title` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
381
				. ' `menu_icon_0` VARCHAR( 512 ) NOT NULL DEFAULT \'\' ,'
382
				. ' `menu_icon_1` VARCHAR( 512 ) NOT NULL DEFAULT \'\' ,'
383
				. ' `tooltip` VARCHAR( 512 ) NOT NULL DEFAULT \'\' ,'
384
				. ' `description` TEXT NOT NULL ,'
385
				. ' `keywords` TEXT NOT NULL ,'
386
				. ' `page_trail` VARCHAR( 255 ) NOT NULL  ,'
387
				. ' `template` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
388
				. ' `visibility` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
389
				. ' `position` INT NOT NULL DEFAULT \'0\','
390
				. ' `menu` INT NOT NULL DEFAULT \'1\','
391
				. ' `language` VARCHAR( 5 ) NOT NULL DEFAULT \'\' ,'
392
				. ' `page_code` INT NOT NULL DEFAULT \'0\','
393
				. ' `searching` INT NOT NULL DEFAULT \'0\','
394
				. ' `admin_groups` VARCHAR( 512 ) NOT NULL DEFAULT \'1\' ,'
395
				. ' `admin_users` VARCHAR( 512 ) NOT NULL ,'
396
				. ' `viewing_groups` VARCHAR( 512 ) NOT NULL DEFAULT \'1\' ,'
397
				. ' `viewing_users` VARCHAR( 512 ) NOT NULL ,'
398
				. ' `modified_when` INT NOT NULL DEFAULT \'0\','
399
				. ' `modified_by` INT NOT NULL  DEFAULT \'0\','
400
				. ' `custom01` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
401
				. ' `custom02` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
402
				. ' PRIMARY KEY ( `page_id` ) '
403
				. ' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
404
	if(!$database->query($pages)) {
405
	}
406

    
407
	// Sections table
408
	$pages = 'CREATE TABLE `'.TABLE_PREFIX.'sections` ( `section_id` INT NOT NULL auto_increment,'
409
	       . ' `page_id` INT NOT NULL DEFAULT \'0\','
410
	       . ' `position` INT NOT NULL DEFAULT \'0\','
411
	       . ' `module` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
412
	       . ' `block` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
413
	       . ' `publ_start` VARCHAR( 255 ) NOT NULL DEFAULT \'0\' ,'
414
	       . ' `publ_end` VARCHAR( 255 ) NOT NULL DEFAULT \'0\' ,'
415
	       . ' PRIMARY KEY ( `section_id` ) '
416
	       . ' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
417
	$database->query($pages);
418

    
419
	require(ADMIN_PATH.'/interface/version.php');
420

    
421
	// Settings table
422
	$settings='CREATE TABLE `'.TABLE_PREFIX.'settings` ( `setting_id` INT NOT NULL auto_increment,'
423
		. ' `name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
424
		. ' `value` TEXT NOT NULL ,'
425
		. ' PRIMARY KEY ( `setting_id` ) '
426
		. ' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
427
	$database->query($settings);
428

    
429
	$settings_rows=	"INSERT INTO `".TABLE_PREFIX."settings` "
430
	." (name, value) VALUES "
431
	." ('wb_version', '".VERSION."'),"
432
	." ('wb_revision', '".REVISION."'),"
433
 	." ('wb_sp', '".SP."'),"
434
	." ('website_title', '$website_title'),"
435
	." ('website_description', ''),"
436
	." ('website_keywords', ''),"
437
	." ('website_header', ''),"
438
	." ('website_footer', ''),"
439
	." ('wysiwyg_style', 'font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;'),"
440
	." ('er_level', ''),"
441
	." ('default_language', '$default_language'),"
442
	." ('app_name', 'wb_$session_rand'),"
443
	." ('sec_anchor', 'section_'),"
444
	." ('default_timezone', '$default_timezone'),"
445
	." ('default_date_format', 'M d Y'),"
446
	." ('default_time_format', 'g:i A'),"
447
	." ('redirect_timer', '1500'),"
448
	." ('home_folders', 'true'),"
449
	." ('warn_page_leave', '1'),"
450
	." ('default_template', 'round'),"
451
	." ('default_theme', 'wb_theme'),"
452
	." ('default_charset', 'utf-8'),"
453
	." ('multiple_menus', 'true'),"
454
	." ('page_level_limit', '4'),"
455
	." ('intro_page', 'false'),"
456
	." ('page_trash', 'inline'),"
457
	." ('homepage_redirection', 'false'),"
458
	." ('page_languages', 'true'),"
459
	." ('wysiwyg_editor', 'fckeditor'),"
460
	." ('manage_sections', 'true'),"
461
	." ('section_blocks', 'true'),"
462
	." ('smart_login', 'false'),"
463
	." ('frontend_login', 'false'),"
464
	." ('frontend_signup', 'false'),"
465
	." ('search', 'public'),"
466
	." ('page_extension', '.php'),"
467
	." ('page_spacer', '-'),"
468
	." ('dev_infos', 'false'),"
469
	." ('pages_directory', '/pages'),"
470
	." ('page_icon_dir', '/templates/*/title_images'),"
471
	." ('rename_files_on_upload', 'ph.*?,cgi,pl,pm,exe,com,bat,pif,cmd,src,asp,aspx'),"
472
	." ('media_directory', '/media'),"
473
	." ('operating_system', '$operating_system'),"
474
	." ('string_file_mode', '$file_mode'),"
475
	." ('string_dir_mode', '$dir_mode'),"
476
	." ('wbmailer_routine', 'phpmail'),"
477
	." ('server_email', '$admin_email'),"		// avoid that mail provider (e.g. mail.com) reject mails like yourname@mail.com
478
	." ('wbmailer_default_sendername', 'WB Mailer'),"
479
	." ('wbmailer_smtp_host', ''),"
480
	." ('wbmailer_smtp_auth', ''),"
481
	." ('wbmailer_smtp_username', ''),"
482
	." ('wbmailer_smtp_password', ''),"
483
	." ('fingerprint_with_ip_octets', '2'),"
484
	." ('secure_form_module', ''),"
485
    ." ('groups_updated', '".time()."' ),"
486
	." ('page_extended', 'true'),"
487
	." ('mediasettings', '')";
488
	$database->query($settings_rows);
489

    
490
	// Users table
491
	$users = 'CREATE TABLE `'.TABLE_PREFIX.'users` ( `user_id` INT NOT NULL auto_increment,'
492
	       . ' `group_id` INT NOT NULL DEFAULT \'0\','
493
	       . ' `groups_id` VARCHAR( 255 ) NOT NULL DEFAULT \'0\','
494
	       . ' `active` INT NOT NULL DEFAULT \'0\','
495
	       . ' `username` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
496
	       . ' `password` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
497
	       . ' `remember_key` VARCHAR( 255 ) NOT NULL DEFAULT \'\','
498
	       . ' `last_reset` INT NOT NULL DEFAULT \'0\','
499
	       . ' `display_name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
500
	       . ' `email` TEXT NOT NULL ,'
501
	       . ' `timezone` INT NOT NULL DEFAULT \'0\','
502
	       . ' `date_format` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
503
	       . ' `time_format` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
504
	       . ' `language` VARCHAR( 5 ) NOT NULL DEFAULT \'' .$default_language .'\' ,'
505
	       . ' `home_folder` TEXT NOT NULL ,'
506
	       . ' `login_when` INT NOT NULL  DEFAULT \'0\','
507
	       . ' `login_ip` VARCHAR( 15 ) NOT NULL DEFAULT \'\' ,'
508
	       . ' PRIMARY KEY ( `user_id` ) '
509
	       . ' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
510
	$database->query($users);
511

    
512
	// Groups table
513
	$groups = 'CREATE TABLE `'.TABLE_PREFIX.'groups` ( `group_id` INT NOT NULL auto_increment,'
514
	        . ' `name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
515
	        . ' `system_permissions` TEXT NOT NULL ,'
516
	        . ' `module_permissions` TEXT NOT NULL ,'
517
	        . ' `template_permissions` TEXT NOT NULL ,'
518
	        . ' PRIMARY KEY ( `group_id` ) '
519
	        . ' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
520
	$database->query($groups);
521

    
522
	// Search settings table
523
	$search = 'CREATE TABLE `'.TABLE_PREFIX.'search` ( `search_id` INT NOT NULL auto_increment,'
524
	        . ' `name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
525
	        . ' `value` TEXT NOT NULL ,'
526
	        . ' `extra` TEXT NOT NULL ,'
527
	        . ' PRIMARY KEY ( `search_id` ) '
528
	        . ' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
529
	$database->query($search);
530

    
531
	// Addons table
532
	$addons = 'CREATE TABLE `'.TABLE_PREFIX.'addons` ( '
533
			.'`addon_id` INT NOT NULL auto_increment ,'
534
			.'`type` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
535
			.'`directory` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
536
			.'`name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
537
			.'`description` TEXT NOT NULL ,'
538
			.'`function` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
539
			.'`version` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
540
			.'`platform` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
541
			.'`author` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
542
			.'`license` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
543
			.' PRIMARY KEY ( `addon_id` ) '
544
			.' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
545
	$database->query($addons);
546

    
547
	// Insert default data
548

    
549
	// Admin group
550
	$full_system_permissions  = 'access,addons,admintools,admintools_view,groups,groups_add,groups_delete,groups_modify,groups_view,';
551
	$full_system_permissions .= 'languages,languages_install,languages_uninstall,languages_view,media,media_create,media_delete,media_rename,media_upload,media_view,';
552
	$full_system_permissions .= 'modules,modules_advanced,modules_install,modules_uninstall,modules_view,pages,pages_add,pages_add_l0,pages_delete,pages_intro,pages_modify,pages_settings,pages_view,';
553
	$full_system_permissions .= 'preferences,preferences_view,settings,settings_advanced,settings_basic,settings_view,templates,templates_install,templates_uninstall,templates_view,users,users_add,users_delete,users_modify,users_view';
554
	$insert_admin_group = "INSERT INTO `".TABLE_PREFIX."groups` VALUES ('1', 'Administrators', '$full_system_permissions', '', '')";
555
	$database->query($insert_admin_group);
556
	// Admin user
557
	$insert_admin_user = "INSERT INTO `".TABLE_PREFIX."users` (user_id,group_id,groups_id,active,username,password,email,display_name) VALUES ('1','1','1','1','$admin_username','".md5($admin_password)."','$admin_email','Administrator')";
558
	$database->query($insert_admin_user);
559

    
560
	// Search header
561
	$search_header = addslashes('
562
<h1>[TEXT_SEARCH]</h1>
563

    
564
<form name="searchpage" action="[WB_URL]/search/index.php" method="get">
565
<table cellpadding="3" cellspacing="0" border="0" width="500">
566
<tr>
567
<td>
568
<input type="hidden" name="search_path" value="[SEARCH_PATH]" />
569
<input type="text" name="string" value="[SEARCH_STRING]" style="width: 100%;" />
570
</td>
571
<td width="150">
572
<input type="submit" value="[TEXT_SEARCH]" style="width: 100%;" />
573
</td>
574
</tr>
575
<tr>
576
<td colspan="2">
577
<input type="radio" name="match" id="match_all" value="all"[ALL_CHECKED] />
578
<label for="match_all">[TEXT_ALL_WORDS]</label>
579
<input type="radio" name="match" id="match_any" value="any"[ANY_CHECKED] />
580
<label for="match_any">[TEXT_ANY_WORDS]</label>
581
<input type="radio" name="match" id="match_exact" value="exact"[EXACT_CHECKED] />
582
<label for="match_exact">[TEXT_EXACT_MATCH]</label>
583
</td>
584
</tr>
585
</table>
586

    
587
</form>
588

    
589
<hr />
590
	');
591
	$insert_search_header = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'header', '$search_header', '')";
592
	$database->query($insert_search_header);
593
	// Search footer
594
	$search_footer = addslashes('');
595
	$insert_search_footer = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'footer', '$search_footer', '')";
596
	$database->query($insert_search_footer);
597
	// Search results header
598
	$search_results_header = addslashes(''.
599
'[TEXT_RESULTS_FOR] \'<b>[SEARCH_STRING]</b>\':
600
<table cellpadding="2" cellspacing="0" border="0" width="100%" style="padding-top: 10px;">');
601
	$insert_search_results_header = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'results_header', '$search_results_header', '')";
602
	$database->query($insert_search_results_header);
603
	// Search results loop
604
	$search_results_loop = addslashes(''.
605
'<tr style="background-color: #F0F0F0;">
606
<td><a href="[LINK]">[TITLE]</a></td>
607
<td align="right">[TEXT_LAST_UPDATED_BY] [DISPLAY_NAME] ([USERNAME]) [TEXT_ON] [DATE]</td>
608
</tr>
609
<tr><td colspan="2" style="text-align: justify; padding-bottom: 5px;">[DESCRIPTION]</td></tr>
610
<tr><td colspan="2" style="text-align: justify; padding-bottom: 10px;">[EXCERPT]</td></tr>');
611

    
612
	$insert_search_results_loop = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'results_loop', '$search_results_loop', '')";
613
	$database->query($insert_search_results_loop);
614
	// Search results footer
615
	$search_results_footer = addslashes("</table>");
616
	$insert_search_results_footer = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'results_footer', '$search_results_footer', '')";
617
	$database->query($insert_search_results_footer);
618
	// Search no results
619
	$search_no_results = addslashes('<tr><td><p>[TEXT_NO_RESULTS]</p></td></tr>');
620
	$insert_search_no_results = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'no_results', '$search_no_results', '')";
621
	$database->query($insert_search_no_results);
622
	// Search module-order
623
	$search_module_order = addslashes('faqbaker,manual,wysiwyg');
624
	$insert_search_module_order = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'module_order', '$search_module_order', '')";
625
	$database->query($insert_search_module_order);
626
	// Search max lines of excerpt
627
	$search_max_excerpt = addslashes('15');
628
	$insert_search_max_excerpt = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'max_excerpt', '$search_max_excerpt', '')";
629
	$database->query($insert_search_max_excerpt);
630
	// max time to search per module
631
	$search_time_limit = addslashes('0');
632
	$insert_search_time_limit = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'time_limit', '$search_time_limit', '')";
633
	$database->query($insert_search_time_limit);
634
	// some config-elements
635
	$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_enable_old_search', 'true', '')");
636
	$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_search_keywords', 'true', '')");
637
	$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_search_description', 'true', '')");
638
	$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_show_description', 'true', '')");
639
	$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_enable_flush', 'false', '')");
640
	// Search template
641
	$database->query("INSERT INTO `".TABLE_PREFIX."search` (name) VALUES ('template')");
642

    
643
	require_once(WB_PATH.'/framework/initialize.php');
644
	// Include the PclZip class file (thanks to
645
	require_once(WB_PATH.'/include/pclzip/pclzip.lib.php');
646
	// Install add-ons
647
	if(file_exists(WB_PATH.'/install/modules')) {
648
		// Unpack pre-packaged modules
649
	}
650
	if(file_exists(WB_PATH.'/install/templates')) {
651
		// Unpack pre-packaged templates
652
	}
653
	if(file_exists(WB_PATH.'/install/languages')) {
654
		// Unpack pre-packaged languages
655
	}
656

    
657
	$admin=new admin_dummy('Start','',false,false);
658
	// Load addons into DB
659
	$dirs['modules'] = WB_PATH.'/modules/';
660
	$dirs['templates'] = WB_PATH.'/templates/';
661
	$dirs['languages'] = WB_PATH.'/languages/';
662

    
663
	foreach($dirs AS $type => $dir) {
664
		if(($handle = opendir($dir))) {
665
			while(false !== ($file = readdir($handle))) {
666
				if($file != '' AND substr($file, 0, 1) != '.' AND $file != 'admin.php' AND $file != 'index.php') {
667
					// Get addon type
668
					if($type == 'modules') {
669
						load_module($dir.'/'.$file, true);
670
						// Pretty ugly hack to let modules run $admin->set_error
671
						// See dummy class definition admin_dummy above
672
						if ($admin->error!='') {
673
							set_error($admin->error);
674
						}
675
					} elseif($type == 'templates') {
676
						load_template($dir.'/'.$file);
677
					} elseif($type == 'languages') {
678
						load_language($dir.'/'.$file);
679
					}
680
				}
681
			}
682
			closedir($handle);
683
		}
684
	}
685

    
686
	// Check if there was a database error
687
	if($database->is_error()) {
688
		set_error($database->get_error());
689
	}
690

    
691
// end of if install_tables
692

    
693
$ThemeUrl = WB_URL.$admin->correct_theme_source('warning.html');
694
// Setup template object, parse vars to it, then parse it
695
$ThemePath = realpath(WB_PATH.$admin->correct_theme_source('loginBox.htt'));
696

    
697
// Log the user in and go to Website Baker Administration
698
$thisApp = new Login(
699
		array(
700
				"MAX_ATTEMPS" => "50",
701
				"WARNING_URL" => $ThemeUrl."/warning.html",
702
				"USERNAME_FIELDNAME" => 'admin_username',
703
				"PASSWORD_FIELDNAME" => 'admin_password',
704
				"REMEMBER_ME_OPTION" => SMART_LOGIN,
705
				"MIN_USERNAME_LEN" => "2",
706
				"MIN_PASSWORD_LEN" => "3",
707
				"MAX_USERNAME_LEN" => "30",
708
				"MAX_PASSWORD_LEN" => "30",
709
				'LOGIN_URL' => ADMIN_URL."/login/index.php",
710
				'DEFAULT_URL' => ADMIN_URL."/start/index.php",
711
				'TEMPLATE_DIR' => $ThemePath,
712
				'TEMPLATE_FILE' => 'loginBox.htt',
713
				'FRONTEND' => false,
714
				'FORGOTTEN_DETAILS_APP' => ADMIN_URL."/login/forgot/index.php",
715
				'USERS_TABLE' => TABLE_PREFIX."users",
716
				'GROUPS_TABLE' => TABLE_PREFIX."groups",
717
		)
718
);
(4-4/5)