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 1818 2012-11-15 22:54:21Z 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
	." (setting_id, name, value) VALUES "
431
	." ( 1, 'wb_version', '".VERSION."'),"
432
	." ( 2, 'website_title', '$website_title'),"
433
	." ( 3, 'website_description', ''),"
434
	." ( 4, 'website_keywords', ''),"
435
	." ( 5, 'website_header', ''),"
436
	." ( 6, 'website_footer', ''),"
437
	." ( 7, 'wysiwyg_style', 'font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;'),"
438
	." ( 8, 'rename_files_on_upload', 'ph.*?,cgi,pl,pm,exe,com,bat,pif,cmd,src,asp,aspx,js,txt'),"
439
	." ( 9, 'er_level', '0'),"
440
	." (10, 'default_language', '$default_language'),"
441
	." (11, 'app_name', 'wb_$session_rand'),"
442
	." (12, 'sec_anchor', 'section_'),"
443
	." (13, 'default_timezone', '$default_timezone'),"
444
	." (14, 'default_date_format', 'M d Y'),"
445
	." (15, 'default_time_format', 'h:i A'),"
446
	." (16, 'redirect_timer', '1500'),"
447
	." (17, 'home_folders', 'true'),"
448
	." (18, 'warn_page_leave', '1'),"
449
	." (19, 'default_template', 'round'),"
450
	." (20, 'default_theme', 'wb_theme'),"
451
	." (21, 'default_charset', 'utf-8'),"
452
	." (22, 'multiple_menus', 'true'),"
453
	." (23, 'page_level_limit', '6'),"
454
	." (24, 'intro_page', 'false'),"
455
	." (25, 'page_trash', 'inline'),"
456
	." (26, 'homepage_redirection', 'false'),"
457
	." (27, 'page_languages', 'true'),"
458
	." (28, 'wysiwyg_editor', 'fckeditor'),"
459
	." (29, 'manage_sections', 'true'),"
460
	." (30, 'section_blocks', 'false'),"
461
	." (31, 'smart_login', 'false'),"
462
	." (32, 'frontend_login', 'false'),"
463
	." (33, 'frontend_signup', 'false'),"
464
	." (34, 'search', 'public'),"
465
	." (35, 'page_extension', '.php'),"
466
	." (36, 'page_spacer', '-'),"
467
	." (37, 'pages_directory', '/pages'),"
468
	." (38, 'rename_files_on_upload', 'ph.*?,cgi,pl,pm,exe,com,bat,pif,cmd,src,asp,aspx,js,txt'),"
469
	." (39, 'media_directory', '/media'),"
470
	." (40, 'operating_system', '$operating_system'),"
471
	." (41, 'string_file_mode', '$file_mode'),"
472
	." (42, 'string_dir_mode', '$dir_mode'),"
473
	." (43, 'wbmailer_routine', 'phpmail'),"
474
	." (44, 'server_email', '$admin_email'),"
475
	." (45, 'wbmailer_default_sendername', 'WebsiteBaker Mailer'),"
476
	." (46, 'wbmailer_smtp_host', ''),"
477
	." (47, 'wbmailer_smtp_auth', ''),"
478
	." (48, 'wbmailer_smtp_username', ''),"
479
	." (49, 'wbmailer_smtp_password', ''),"
480
	." (50, 'fingerprint_with_ip_octets', '2'),"
481
	." (51, 'secure_form_module', ''),"
482
	." (52, 'mediasettings', ''),"
483
	." (53, 'wb_revision', '".REVISION."'),"
484
 	." (54, 'wb_sp', '".SP."'),"
485
	." (55, 'page_icon_dir', '/templates/*/title_images'),"
486
	." (56, 'dev_infos', 'false'),"
487
	." (57, 'groups_updated', '".time()."'),"
488
	." (58, 'website_signature', ''),"
489
	." (59, 'confirmed_registration', '1'),"
490
	." (60, 'page_extended', 'true'),"
491
	." (61, 'modules_upgrade_list', 'news,wysiwyg,form'),"
492
	." (62, 'system_locked', '0')";
493
	$database->query($settings_rows);
494

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

    
519
	// Groups table
520
	$groups = 'CREATE TABLE `'.TABLE_PREFIX.'groups` ( `group_id` INT NOT NULL auto_increment,'
521
	        . ' `name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
522
	        . ' `system_permissions` TEXT NOT NULL ,'
523
	        . ' `module_permissions` TEXT NOT NULL ,'
524
	        . ' `template_permissions` TEXT NOT NULL ,'
525
	        . ' PRIMARY KEY ( `group_id` ) '
526
	        . ' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
527
	$database->query($groups);
528

    
529
	// Search settings table
530
	$search = 'CREATE TABLE `'.TABLE_PREFIX.'search` ( `search_id` INT NOT NULL auto_increment,'
531
	        . ' `name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
532
	        . ' `value` TEXT NOT NULL ,'
533
	        . ' `extra` TEXT NOT NULL ,'
534
	        . ' PRIMARY KEY ( `search_id` ) '
535
	        . ' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
536
	$database->query($search);
537

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

    
554
	// Insert default data
555

    
556
	// Admin group
557
	$full_system_permissions  = 'access,addons,admintools,admintools_view,groups,groups_add,groups_delete,groups_modify,groups_view,';
558
	$full_system_permissions .= 'languages,languages_install,languages_uninstall,languages_view,media,media_create,media_delete,media_rename,media_upload,media_view,';
559
	$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,';
560
	$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';
561
	$insert_admin_group = "INSERT INTO `".TABLE_PREFIX."groups` VALUES ('1', 'Administrators', '$full_system_permissions', '', '')";
562
	$database->query($insert_admin_group);
563
	// Admin user
564
	$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')";
565
	$database->query($insert_admin_user);
566

    
567
	// Search header
568
	$search_header = addslashes('
569
<h1>[TEXT_SEARCH]</h1>
570

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

    
594
</form>
595

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

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

    
650
	require_once(WB_PATH.'/framework/initialize.php');
651
	// Include the PclZip class file (thanks to
652
	require_once(WB_PATH.'/include/pclzip/pclzip.lib.php');
653
	// Install add-ons
654
	if(file_exists(WB_PATH.'/install/modules')) {
655
		// Unpack pre-packaged modules
656
	}
657
	if(file_exists(WB_PATH.'/install/templates')) {
658
		// Unpack pre-packaged templates
659
	}
660
	if(file_exists(WB_PATH.'/install/languages')) {
661
		// Unpack pre-packaged languages
662
	}
663

    
664
	$admin=new admin_dummy('Start','',false,false);
665
	// Load addons into DB
666
	$dirs['modules'] = WB_PATH.'/modules/';
667
	$dirs['templates'] = WB_PATH.'/templates/';
668
	$dirs['languages'] = WB_PATH.'/languages/';
669

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

    
693
	// Check if there was a database error
694
	if($database->is_error()) {
695
		set_error($database->get_error());
696
	}
697

    
698
if ( sizeof(createFolderProtectFile( WB_PATH.MEDIA_DIRECTORY )) ) {  }
699
if ( sizeof(createFolderProtectFile( WB_PATH.MEDIA_DIRECTORY.'/home' )) ) {  }
700
if ( sizeof(createFolderProtectFile( WB_PATH.PAGES_DIRECTORY )) ) {  }
701

    
702
// end of if install_tables
703

    
704
$ThemeUrl = WB_URL.$admin->correct_theme_source('warning.html');
705
// Setup template object, parse vars to it, then parse it
706
$ThemePath = realpath(WB_PATH.$admin->correct_theme_source('loginBox.htt'));
707

    
708
// Log the user in and go to Website Baker Administration
709
$thisApp = new Login(
710
		array(
711
				"MAX_ATTEMPS" => "50",
712
				"WARNING_URL" => $ThemeUrl."/warning.html",
713
				"USERNAME_FIELDNAME" => 'admin_username',
714
				"PASSWORD_FIELDNAME" => 'admin_password',
715
				"REMEMBER_ME_OPTION" => SMART_LOGIN,
716
				"MIN_USERNAME_LEN" => "2",
717
				"MIN_PASSWORD_LEN" => "3",
718
				"MAX_USERNAME_LEN" => "30",
719
				"MAX_PASSWORD_LEN" => "30",
720
				'LOGIN_URL' => ADMIN_URL."/login/index.php",
721
				'DEFAULT_URL' => ADMIN_URL."/start/index.php",
722
				'TEMPLATE_DIR' => $ThemePath,
723
				'TEMPLATE_FILE' => 'loginBox.htt',
724
				'FRONTEND' => false,
725
				'FORGOTTEN_DETAILS_APP' => ADMIN_URL."/login/forgot/index.php",
726
				'USERS_TABLE' => TABLE_PREFIX."users",
727
				'GROUPS_TABLE' => TABLE_PREFIX."groups",
728
		)
729
);
(4-4/5)