Project

General

Profile

« Previous | Next » 

Revision 1470

Added by Dietmar almost 13 years ago

languages Typo fix (Tks to pcwacht)
update intro, fixed saving
fixed install/save.php (Tks to pcwacht)

View differences:

branches/2.8.x/CHANGELOG
11 11
! = Update/Change
12 12

  
13 13
------------------------------------- 2.8.2 ------------------------------------
14
07 Jul-2011 Build 1470 Dietmar Woellbrink (Luisehahne)
15
# languages Typo fix (Tks to pcwacht)
16
! update intro, fixed saving
17
# fixed install/save.php (Tks to pcwacht)
14 18
07 Jul-2011 Build 1469 Dietmar Woellbrink (Luisehahne)
15 19
! Forgotten upload changelog and version.php
16 20
07 Jul-2011 Build 1468 Dietmar Woellbrink (Luisehahne)
branches/2.8.x/wb/admin/pages/intro.php
20 20
require('../../config.php');
21 21
require_once(WB_PATH.'/framework/class.admin.php');
22 22
$admin = new admin('Pages', 'pages_intro');
23

  
24
// Get page content
25
$filename = WB_PATH.PAGES_DIRECTORY.'/intro'.PAGE_EXTENSION;
26
if(file_exists($filename)) {
27
	$handle = fopen($filename, "r");
28
	$content = fread($handle, filesize($filename));
29
	fclose($handle);
30
} else {
31
	$content = '';
23
$content = '';
24
if(file_exists($filename) && filesize($filename) > 0) {
25
$content = file_get_contents( $filename ) ;
32 26
}
33 27

  
28

  
34 29
if(!isset($_GET['wysiwyg']) OR $_GET['wysiwyg'] != 'no') {
35 30
	if (!defined('WYSIWYG_EDITOR') OR WYSIWYG_EDITOR=="none" OR !file_exists(WB_PATH.'/modules/'.WYSIWYG_EDITOR.'/include.php')) {
36 31
		function show_wysiwyg_editor($name,$id,$content,$width,$height) {
......
45 40

  
46 41

  
47 42
<form action="intro2.php" method="post">
48

  
43
<?php print $admin->getFTAN(); ?>
49 44
<input type="hidden" name="page_id" value="{PAGE_ID}" />
50 45

  
51 46
<?php
branches/2.8.x/wb/admin/pages/intro2.php
16 16
 *
17 17
 */
18 18

  
19
// Create new admin object
20
require('../../config.php');
21
require_once(WB_PATH.'/framework/class.admin.php');
22
$admin = new admin('Pages', 'pages_intro',false);
23
if (!$admin->checkFTAN())
24
{
25
	$admin->print_header();
26
	$admin->print_error($MESSAGE['GENERIC_SECURITY_ACCESS']);
27
}
28

  
19 29
// Get posted content
20 30
if(!isset($_POST['content'])) {
21 31
	header("Location: intro".PAGE_EXTENSION."");
......
24 34
	$content = $_POST['content'];
25 35
}
26 36

  
27
// Create new admin object
28
require('../../config.php');
29
require_once(WB_PATH.'/framework/class.admin.php');
30
$admin = new admin('Pages', 'pages_intro');
37
$content = $admin->strip_slashes($content);
31 38

  
32
$content=$admin->strip_slashes($content);
33

  
34 39
// Include the WB functions file
35 40
require_once(WB_PATH.'/framework/functions.php');
36 41

  
42
$admin->print_header();
37 43
// Write new content
38 44
$filename = WB_PATH.PAGES_DIRECTORY.'/intro'.PAGE_EXTENSION;
39
$handle = fopen($filename, 'w');
40 45
if(is_writable($filename)) {
41
	if(fwrite($handle, $content)) {
42
		fclose($handle);
43
		change_mode($filename, 'file');
46
	if(file_put_contents($filename, utf8_encode($content))===false){
47
		$admin->print_error($MESSAGE['PAGES_NOT_SAVED']);
48
	} else {
49
		change_mode($filename);
44 50
		$admin->print_success($MESSAGE['PAGES']['INTRO_SAVED']);
45
	} else {
46
		fclose($handle);
47
		$admin->print_error($MESSAGE['PAGES']['INTRO_NOT_WRITABLE']);
48 51
	}
49 52
} else {
50 53
	$admin->print_error($MESSAGE['PAGES']['INTRO_NOT_WRITABLE']);
......
52 55

  
53 56
// Print admin footer
54 57
$admin->print_footer();
55

  
56
?>
branches/2.8.x/wb/admin/interface/version.php
52 52

  
53 53
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
54 54
if(!defined('VERSION')) define('VERSION', '2.8.2.RC6');
55
if(!defined('REVISION')) define('REVISION', '1469');
55
if(!defined('REVISION')) define('REVISION', '1470');
56 56

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

  
19
$debug = true;
20

  
21
if (true === $debug) {
22
	ini_set('display_errors', 1);
23
	error_reporting(E_ALL);
24
}
25
// Start a session
26
if(!defined('SESSION_STARTED')) {
27
	session_name('wb_session_id');
28
	session_start();
29
	define('SESSION_STARTED', true);
30
}
31
// get random-part for session_name()
32
list($usec,$sec) = explode(' ',microtime());
33
srand((float)$sec+((float)$usec*100000));
34
$session_rand = rand(1000,9999);
35

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

  
85
// Dummy class to allow modules' install scripts to call $admin->print_error
86
class admin_dummy
87
{
88
	var $error='';
89
	function print_error($message)
90
	{
91
		$this->error=$message;
92
	}
93
}
94

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

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

  
127
function add_slashes($input) {
128
	if ( get_magic_quotes_gpc() || ( !is_string($input) ) ) {
129
		return $input;
130
	}
131
	$output = addslashes($input);
132
	return $output;
133
}
134

  
135
// Begin check to see if form was even submitted
136
// Set error if no post vars found
137
if(!isset($_POST['website_title'])) {
138
	set_error('Please fill-in the form below');
139
}
140
// End check to see if form was even submitted
141

  
142
// Begin path and timezone details code
143

  
144
// Check if user has entered the installation url
145
if(!isset($_POST['wb_url']) OR $_POST['wb_url'] == '') {
146
	set_error('Please enter an absolute URL', 'wb_url');
147
} else {
148
	$wb_url = $_POST['wb_url'];
149
}
150
// Remove any slashes at the end of the URL
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
if(substr($wb_url, strlen($wb_url)-1, 1) == "/") {
158
	$wb_url = substr($wb_url, 0, strlen($wb_url)-1);
159
}
160
if(substr($wb_url, strlen($wb_url)-1, 1) == "\\") {
161
	$wb_url = substr($wb_url, 0, strlen($wb_url)-1);
162
}
163
// Get the default time zone
164
if(!isset($_POST['default_timezone']) OR !is_numeric($_POST['default_timezone'])) {
165
	set_error('Please select a valid default timezone', 'default_timezone');
166
} else {
167
	$default_timezone = $_POST['default_timezone']*60*60;
168
}
169
// End path and timezone details code
170

  
171
// Get the default language
172
$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');
173
if(!isset($_POST['default_language']) OR !in_array($_POST['default_language'], $allowed_languages)) {
174
	set_error('Please select a valid default backend language','default_language');
175
} else {
176
	$default_language = $_POST['default_language'];
177
	// make sure the selected language file exists in the language folder
178
	if(!file_exists('../languages/' .$default_language .'.php')) {
179
		set_error('The language file: \'' .$default_language .'.php\' is missing. Upload file to language folder or choose another language','default_language');
180
	}
181
}
182
// End default language details code
183

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

  
204
// Begin database details code
205
// Check if user has entered a database host
206
if(!isset($_POST['database_host']) OR $_POST['database_host'] == '') {
207
	set_error('Please enter a database host name', 'database_host');
208
} else {
209
	$database_host = $_POST['database_host'];
210
}
211
// Check if user has entered a database username
212
if(!isset($_POST['database_username']) OR $_POST['database_username'] == '') {
213
	set_error('Please enter a database username','database_username');
214
} else {
215
	$database_username = $_POST['database_username'];
216
}
217
// Check if user has entered a database password
218
if(!isset($_POST['database_password'])) {
219
	set_error('Please enter a database password', 'database_password');
220
} else {
221
	$database_password = $_POST['database_password'];
222
}
223
// Check if user has entered a database name
224
if(!isset($_POST['database_name']) OR $_POST['database_name'] == '') {
225
	set_error('Please enter a database name', 'database_name');
226
} else {
227
	// make sure only allowed characters are specified
228
	if(preg_match('/[^a-z0-9_-]+/i', $_POST['database_name'])) {
229
		// contains invalid characters (only a-z, A-Z, 0-9 and _ allowed to avoid problems with table/field names)
230
		set_error('Only characters a-z, A-Z, 0-9, - and _ allowed in database name.', 'database_name');
231
	}
232
	$database_name = $_POST['database_name'];
233
}
234
// Get table prefix
235
if(preg_match('/[^a-z0-9_]+/i', $_POST['table_prefix'])) {
236
	// contains invalid characters (only a-z, A-Z, 0-9 and _ allowed to avoid problems with table/field names)
237
	set_error('Only characters a-z, A-Z, 0-9 and _ allowed in table_prefix.', 'table_prefix');
238
} else {
239
	$table_prefix = $_POST['table_prefix'];
240
}
241

  
242
// Find out if the user wants to install tables and data
243
if(isset($_POST['install_tables']) AND $_POST['install_tables'] == 'true') {
244
	$install_tables = true;
245
} else {
246
	$install_tables = false;
247
}
248
// End database details code
249

  
250
// Begin website title code
251
// Get website title
252
if(!isset($_POST['website_title']) OR $_POST['website_title'] == '') {
253
	set_error('Please enter a website title', 'website_title');
254
} else {
255
	$website_title = add_slashes($_POST['website_title']);
256
}
257
// End website title code
258

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

  
292
// Try and write settings to config file
293
$config_content = "" .
294
"<?php\n".
295
"\n".
296
"define('DB_TYPE', 'mysql');\n".
297
"define('DB_HOST', '$database_host');\n".
298
"define('DB_USERNAME', '$database_username');\n".
299
"define('DB_PASSWORD', '$database_password');\n".
300
"define('DB_NAME', '$database_name');\n".
301
"define('TABLE_PREFIX', '$table_prefix');\n".
302
"\n".
303
"define('WB_PATH', dirname(__FILE__));\n".
304
"define('WB_URL', '$wb_url');\n".
305
"define('ADMIN_PATH', WB_PATH.'/admin');\n".
306
"define('ADMIN_URL', '$wb_url/admin');\n".
307
"\n".
308
"require_once(WB_PATH.'/framework/initialize.php');\n".
309
"\n".
310
"?>";
311

  
312
$config_filename = '../config.php';
313

  
314
// Check if the file exists and is writable first.
315
if(file_exists($config_filename) AND is_writable($config_filename)) {
316
	if(!$handle = fopen($config_filename, 'w')) {
317
		set_error("Cannot open the configuration file ($config_filename)");
318
	} else {
319
		if (fwrite($handle, $config_content) === FALSE) {
320
			set_error("Cannot write to the configuration file ($config_filename)");
321
		}
322
		// Close file
323
		fclose($handle);
324
	}
325
} else {
326
	set_error("The configuration file $config_filename is not writable. Change its permissions so it is, then re-run step 4.");
327
}
328

  
329
// Define configuration vars
330
define('DB_TYPE', 'mysql');
331
define('DB_HOST', $database_host);
332
define('DB_USERNAME', $database_username);
333
define('DB_PASSWORD', $database_password);
334
define('DB_NAME', $database_name);
335
define('TABLE_PREFIX', $table_prefix);
336
define('WB_PATH', str_replace(array('/install','\install'), '',dirname(__FILE__)));
337
define('WB_URL', $wb_url);
338
define('ADMIN_PATH', WB_PATH.'/admin');
339
define('ADMIN_URL', $wb_url.'/admin');
340

  
341
// Check if the user has entered a correct path
342
if(!file_exists(WB_PATH.'/framework/class.admin.php')) {
343
	set_error('It appears the Absolute path that you entered is incorrect');
344
}
345

  
346
// Try connecting to database	
347
if(!@mysql_connect(DB_HOST, DB_USERNAME, DB_PASSWORD)) {
348
	set_error('Database host name, username and/or password incorrect. MySQL Error:<br />'.mysql_error());
349
}
350

  
351
// Try to create the database
352
mysql_query('CREATE DATABASE `'.$database_name.'`');
353

  
354
// Close the mysql connection
355
mysql_close();
356

  
357
// Include WB functions file
358
require_once(WB_PATH.'/framework/functions.php');
359

  
360
// Re-connect to the database, this time using in-build database class
361
require_once(WB_PATH.'/framework/class.login.php');
362
$database=new database();
363

  
364
// Check if we should install tables
365
if($install_tables == true) {
366
	if (!defined('WB_INSTALL_PROCESS')) define ('WB_INSTALL_PROCESS', true);
367
	// Remove tables if they exist
368

  
369
	// Pages table
370
	$pages = "DROP TABLE IF EXISTS `".TABLE_PREFIX."pages`";
371
	$database->query($pages);
372
	// Sections table
373
	$sections = "DROP TABLE IF EXISTS `".TABLE_PREFIX."sections`";
374
	$database->query($sections);
375
	// Settings table
376
	$settings = "DROP TABLE IF EXISTS `".TABLE_PREFIX."settings`";
377
	$database->query($settings);
378
	// Users table
379
	$users = "DROP TABLE IF EXISTS `".TABLE_PREFIX."users`";
380
	$database->query($users);
381
	// Groups table
382
	$groups = "DROP TABLE IF EXISTS `".TABLE_PREFIX."groups`";
383
	$database->query($groups);
384
	// Search table
385
	$search = "DROP TABLE IF EXISTS `".TABLE_PREFIX."search`";
386
	$database->query($search);
387
	// Addons table
388
	$addons = "DROP TABLE IF EXISTS `".TABLE_PREFIX."addons`";
389
	$database->query($addons);
390
				
391
	// Try installing tables
392
	
393
	// Pages table
394
	$pages = 'CREATE TABLE `'.TABLE_PREFIX.'pages` ( `page_id` INT NOT NULL auto_increment,'
395
	       . ' `parent` INT NOT NULL DEFAULT \'0\','
396
	       . ' `root_parent` INT NOT NULL DEFAULT \'0\','
397
	       . ' `level` INT NOT NULL DEFAULT \'0\','
398
	       . ' `link` TEXT NOT NULL,'
399
	       . ' `target` VARCHAR( 7 ) NOT NULL DEFAULT \'\' ,'
400
	       . ' `page_title` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
401
	       . ' `menu_title` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
402
	       . ' `description` TEXT NOT NULL ,'
403
	       . ' `keywords` TEXT NOT NULL ,'
404
	       . ' `page_trail` TEXT NOT NULL  ,'
405
	       . ' `template` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
406
	       . ' `visibility` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
407
	       . ' `position` INT NOT NULL DEFAULT \'0\','
408
	       . ' `menu` INT NOT NULL DEFAULT \'0\','
409
	       . ' `language` VARCHAR( 5 ) NOT NULL DEFAULT \'\' ,'
410
	       . ' `searching` INT NOT NULL DEFAULT \'0\','
411
	       . ' `admin_groups` TEXT NOT NULL ,'
412
	       . ' `admin_users` TEXT NOT NULL ,'
413
	       . ' `viewing_groups` TEXT NOT NULL ,'
414
	       . ' `viewing_users` TEXT NOT NULL ,'
415
	       . ' `modified_when` INT NOT NULL DEFAULT \'0\','
416
	       . ' `modified_by` INT NOT NULL  DEFAULT \'0\','
417
	       . ' PRIMARY KEY ( `page_id` ) '
418
	       . ' )';
419
	$database->query($pages);
420
	
421
	// Sections table
422
	$pages = 'CREATE TABLE `'.TABLE_PREFIX.'sections` ( `section_id` INT NOT NULL auto_increment,'
423
	       . ' `page_id` INT NOT NULL DEFAULT \'0\','
424
	       . ' `position` INT NOT NULL DEFAULT \'0\','
425
	       . ' `module` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
426
	       . ' `block` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
427
	       . ' `publ_start` VARCHAR( 255 ) NOT NULL DEFAULT \'0\' ,'
428
	       . ' `publ_end` VARCHAR( 255 ) NOT NULL DEFAULT \'0\' ,' 
429
	       . ' PRIMARY KEY ( `section_id` ) '
430
	       . ' )';
431
	$database->query($pages);
432

  
433
	require(ADMIN_PATH.'/interface/version.php');
434
	
435
	// Settings table
436
	$settings='CREATE TABLE `'.TABLE_PREFIX.'settings` ( `setting_id` INT NOT NULL auto_increment,'
437
		. ' `name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
438
		. ' `value` TEXT NOT NULL ,'
439
		. ' PRIMARY KEY ( `setting_id` ) '
440
		. ' )';
441
	$database->query($settings);
442

  
443
	$settings_rows=	"INSERT INTO `".TABLE_PREFIX."settings` "
444
	." (name, value) VALUES "
445
	." ('wb_version', '".VERSION."'),"
446
	." ('website_title', '$website_title'),"
447
	." ('website_description', ''),"
448
	." ('website_keywords', ''),"
449
	." ('website_header', ''),"
450
	." ('website_footer', ''),"
451
	." ('wysiwyg_style', 'font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;'),"
452
	." ('rename_files_on_upload', 'php,asp,phpx,aspx'),"
453
	." ('er_level', ''),"
454
	." ('default_language', '$default_language'),"
455
	." ('app_name', 'wb_$session_rand'),"
456
	." ('sec_anchor', 'wb_'),"
457
	." ('default_timezone', '$default_timezone'),"
458
	." ('default_date_format', 'M d Y'),"
459
	." ('default_time_format', 'g:i A'),"
460
	." ('redirect_timer', '1500'),"
461
	." ('home_folders', 'true'),"
462
	." ('warn_page_leave', '1'),"
463
	." ('default_template', 'round'),"
464
	." ('default_theme', 'wb_theme'),"
465
	." ('default_charset', 'utf-8'),"
466
	." ('multiple_menus', 'true'),"
467
	." ('page_level_limit', '4'),"
468
	." ('intro_page', 'false'),"
469
	." ('page_trash', 'inline'),"
470
	." ('homepage_redirection', 'false'),"
471
	." ('page_languages', 'true'),"
472
	." ('wysiwyg_editor', 'fckeditor'),"
473
	." ('manage_sections', 'true'),"
474
	." ('section_blocks', 'true'),"
475
	." ('smart_login', 'true'),"
476
	." ('frontend_login', 'false'),"
477
	." ('frontend_signup', 'false'),"
478
	." ('search', 'public'),"
479
	." ('page_extension', '.php'),"
480
	." ('page_spacer', '-'),"
481
	." ('pages_directory', '/pages'),"
482
	." ('media_directory', '/media'),"
483
	." ('operating_system', '$operating_system'),"
484
	." ('string_file_mode', '$file_mode'),"
485
	." ('string_dir_mode', '$dir_mode'),"
486
	." ('wbmailer_routine', 'phpmail'),"
487
	." ('server_email', 'admin@yourdomain.com'),"		// avoid that mail provider (e.g. mail.com) reject mails like yourname@mail.com
488
	." ('wbmailer_default_sendername', 'WB Mailer'),"
489
	." ('wbmailer_smtp_host', ''),"
490
	." ('wbmailer_smtp_auth', ''),"
491
	." ('wbmailer_smtp_username', ''),"
492
	." ('wbmailer_smtp_password', ''),"
493
	." ('fingerprint_with_ip_octets', '3'),"
494
	." ('mediasettings', '')";
495
	$database->query($settings_rows);
496
	
497
	// Users table
498
	$users = 'CREATE TABLE `'.TABLE_PREFIX.'users` ( `user_id` INT NOT NULL auto_increment,'
499
	       . ' `group_id` INT NOT NULL DEFAULT \'0\','
500
	       . ' `groups_id` VARCHAR( 255 ) NOT NULL DEFAULT \'0\','
501
	       . ' `active` INT NOT NULL DEFAULT \'0\','
502
	       . ' `username` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
503
	       . ' `password` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
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
	       . ' )';
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
	        . ' )';
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
	        . ' )';
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
			.' )';
552
	$database->query($addons);
553

  
554
	// Insert default data
555
	
556
	// Admin group
557
	$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,admintools';
558
	$insert_admin_group = "INSERT INTO `".TABLE_PREFIX."groups` VALUES ('1', 'Administrators', '$full_system_permissions', '', '')";
559
	$database->query($insert_admin_group);
560
	// Admin user
561
	$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')";
562
	$database->query($insert_admin_user);
563
	
564
	// Search header
565
	$search_header = addslashes('
566
<h1>[TEXT_SEARCH]</h1>
567

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

  
591
</form>
592

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

  
616
	$insert_search_results_loop = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'results_loop', '$search_results_loop', '')";
617
	$database->query($insert_search_results_loop);
618
	// Search results footer
619
	$search_results_footer = addslashes("</table>");
620
	$insert_search_results_footer = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'results_footer', '$search_results_footer', '')";
621
	$database->query($insert_search_results_footer);
622
	// Search no results
623
	$search_no_results = addslashes('<tr><td><p>[TEXT_NO_RESULTS]</p></td></tr>');
624
	$insert_search_no_results = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'no_results', '$search_no_results', '')";
625
	$database->query($insert_search_no_results);
626
	// Search module-order
627
	$search_module_order = addslashes('faqbaker,manual,wysiwyg');
628
	$insert_search_module_order = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'module_order', '$search_module_order', '')";
629
	$database->query($insert_search_module_order);
630
	// Search max lines of excerpt
631
	$search_max_excerpt = addslashes('15');
632
	$insert_search_max_excerpt = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'max_excerpt', '$search_max_excerpt', '')";
633
	$database->query($insert_search_max_excerpt);
634
	// max time to search per module
635
	$search_time_limit = addslashes('0');
636
	$insert_search_time_limit = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'time_limit', '$search_time_limit', '')";
637
	$database->query($insert_search_time_limit);
638
	// some config-elements
639
	$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_enable_old_search', 'true', '')");
640
	$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_search_keywords', 'true', '')");
641
	$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_search_description', 'true', '')");
642
	$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_show_description', 'true', '')");
643
	$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_enable_flush', 'false', '')");
644
	// Search template
645
	$database->query("INSERT INTO `".TABLE_PREFIX."search` (name) VALUES ('template')");
646
		
647
	require_once(WB_PATH.'/framework/initialize.php');
648
	
649
	// Include the PclZip class file (thanks to 
650
	require_once(WB_PATH.'/include/pclzip/pclzip.lib.php');
651
			
652
	// Install add-ons
653
	if(file_exists(WB_PATH.'/install/modules')) {
654
		// Unpack pre-packaged modules
655
			
656
	}
657
	if(file_exists(WB_PATH.'/install/templates')) {
658
		// Unpack pre-packaged templates
659
		
660
	}
661
	if(file_exists(WB_PATH.'/install/languages')) {
662
		// Unpack pre-packaged languages
663
		
664
	}
665
	
666
	$admin=new admin_dummy();
667
	// Load addons into DB
668
	$dirs['modules'] = WB_PATH.'/modules/';
669
	$dirs['templates'] = WB_PATH.'/templates/';
670
	$dirs['languages'] = WB_PATH.'/languages/';
671
	foreach($dirs AS $type => $dir) {
672
		if($handle = opendir($dir)) {
673
			while(false !== ($file = readdir($handle))) {
674
				if($file != '' AND substr($file, 0, 1) != '.' AND $file != 'admin.php' AND $file != 'index.php') {
675
					// Get addon type
676
					if($type == 'modules') {
677
						load_module($dir.'/'.$file, true);
678
						// Pretty ugly hack to let modules run $admin->set_error
679
						// See dummy class definition admin_dummy above
680
						if ($admin->error!='') {
681
							set_error($admin->error);
682
						}
683
					} elseif($type == 'templates') {
684
						load_template($dir.'/'.$file);
685
					} elseif($type == 'languages') {
686
						load_language($dir.'/'.$file);
687
					}
688
				}
689
			}
690
		closedir($handle);
691
		}
692
	}
693
	
694
	// Check if there was a database error
695
	if($database->is_error()) {
696
		set_error($database->get_error());
697
	}
698

  
699
// end of if install_tables	
700
} else {
701
	/**
702
	 *	DB - Exists
703
	 *	Tables also?
704
	 *
705
	 */
706
	$requested_tables = array("pages","sections","settings","users","groups","search","addons");
707
	for($i=0;$i<count($requested_tables);$i++) $requested_tables[$i] = $table_prefix.$requested_tables[$i];
708
	
709
	$result = mysql_list_tables( DB_NAME );
710
	$all_tables = array();
711
	for($i=0; $i < mysql_num_rows($result); $i++) $all_tables[] = mysql_table_name($result, $i);
712

  
713
	$missing_tables = array();
714
	foreach($requested_tables as $temp_table) {
715
		if (!in_array($temp_table, $all_tables)) {
716
			$missing_tables[] = $temp_table;
717
		}
718
	}
719
	
720
	/**
721
	 *	If one or more needed tables are missing, so 
722
	 *	we can't go on and have to display an error
723
	 */
724
	if ( count($missing_tables) > 0 ) {
725
		$error_message  = "One or more tables are missing in the selected database <b><font color='#990000'>".DB_NAME."</font></b>.<br />";
726
		$error_message .= "Please install the missing tables or choose 'install tables' as recommend.<br />";
727
		$error_message .= "Missing tables are: <b>".implode(", ", $missing_tables)."</b>";
728
		
729
		set_error( $error_message );
730
	}
731
	
732
	/**
733
	 *	Try to get some default settings ...
734
	 */
735
	$vars = array(
736
		'DEFAULT_THEME'	=> "wb_theme",
737
		'THEME_URL'		=> WB_URL."/templates/wb_theme",
738
		'THEME_PATH'	=> WB_PATH."/templates/wb_theme",
739
		'LANGUAGE'		=> $_POST['default_language'],
740
		'SERVER_EMAIL'	=> "admin@yourdomain.com",
741
		'SMART_LOGIN'	=> false
742
	);
743
	foreach($vars as $k => $v) if (!defined($k)) define($k, $v);
744
	
745
	if (!isset($MESSAGE)) include (WB_PATH."/languages/".LANGUAGE.".php");
746
	
747
	/**
748
	 *	The important part ...
749
	 *	Is there an valid user?
750
	 */
751
	$result = $database->query("SELECT * from ".$table_prefix."users where username='".$_POST['admin_username']."'");
752
	if ( $database->is_error() ) {
753
		set_error ($database->get_error() );
754
	}
755
	if ($result->numRows() == 0) {
756
		/**
757
		 *	No matches found ... user properly unknown
758
	 	 */
759
	 	set_error ("Unkown user. Please use a valid username.");
760
	} else {
761
	 	
762
		$data = $result->fetchRow();
763
	 	/**
764
	 	 *	Does the password match
765
	 	 */
766
	 	if ( md5($_POST['admin_password']) != $data['password']) {
767
	 		set_error ("Password didn't match");
768
	 	}
769
	}
770
}
771
// Log the user in and go to Website Baker Administration
772
$thisApp = new Login(
773
		array(
774
				"MAX_ATTEMPS" => "50",
775
				"WARNING_URL" => ADMIN_URL."/login/warning.html",
776
				"USERNAME_FIELDNAME" => 'admin_username',
777
				"PASSWORD_FIELDNAME" => 'admin_password',
778
				"REMEMBER_ME_OPTION" => SMART_LOGIN,
779
				"MIN_USERNAME_LEN" => "2",
780
				"MIN_PASSWORD_LEN" => "2",
781
				"MAX_USERNAME_LEN" => "30",
782
				"MAX_PASSWORD_LEN" => "30",
783
				'LOGIN_URL' => ADMIN_URL."/login/index.php",
784
				'DEFAULT_URL' => ADMIN_URL."/start/index.php",
785
				'TEMPLATE_DIR' => ADMIN_PATH."/login",
786
				'TEMPLATE_FILE' => "template.html",
787
				'FRONTEND' => false,
788
				'FORGOTTEN_DETAILS_APP' => ADMIN_URL."/login/forgot/index.php",
789
				'USERS_TABLE' => TABLE_PREFIX."users",
790
				'GROUPS_TABLE' => TABLE_PREFIX."groups",
791
		)
792
);
793
?>
1
<?php
2
/**
3
 *
4
 * @category        backend
5
 * @package         install
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version      	$Id$
14
 * @filesource		$HeadURL:  $
15
 * @lastmodified    $Date: $
16
 *
17
 */
18

  
19
$debug = true;
20

  
21
if (true === $debug) {
22
	ini_set('display_errors', 1);
23
	error_reporting(E_ALL);
24
}
25
// Start a session
26
if(!defined('SESSION_STARTED')) {
27
	session_name('wb_session_id');
28
	session_start();
29
	define('SESSION_STARTED', true);
30
}
31
// get random-part for session_name()
32
list($usec,$sec) = explode(' ',microtime());
33
srand((float)$sec+((float)$usec*100000));
34
$session_rand = rand(1000,9999);
35

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

  
85
// Dummy class to allow modules' install scripts to call $admin->print_error
86
class admin_dummy
87
{
88
	var $error='';
89
	function print_error($message)
90
	{
91
		$this->error=$message;
92
	}
93
}
94

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

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

  
127
function add_slashes($input) {
128
	if ( get_magic_quotes_gpc() || ( !is_string($input) ) ) {
129
		return $input;
130
	}
131
	$output = addslashes($input);
132
	return $output;
133
}
134

  
135
// Begin check to see if form was even submitted
136
// Set error if no post vars found
137
if(!isset($_POST['website_title'])) {
138
	set_error('Please fill-in the form below');
139
}
140
// End check to see if form was even submitted
141

  
142
// Begin path and timezone details code
143

  
144
// Check if user has entered the installation url
145
if(!isset($_POST['wb_url']) OR $_POST['wb_url'] == '') {
146
	set_error('Please enter an absolute URL', 'wb_url');
147
} else {
148
	$wb_url = $_POST['wb_url'];
149
}
150
// Remove any slashes at the end of the URL
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
if(substr($wb_url, strlen($wb_url)-1, 1) == "/") {
158
	$wb_url = substr($wb_url, 0, strlen($wb_url)-1);
159
}
160
if(substr($wb_url, strlen($wb_url)-1, 1) == "\\") {
161
	$wb_url = substr($wb_url, 0, strlen($wb_url)-1);
162
}
163
// Get the default time zone
164
if(!isset($_POST['default_timezone']) OR !is_numeric($_POST['default_timezone'])) {
165
	set_error('Please select a valid default timezone', 'default_timezone');
166
} else {
167
	$default_timezone = $_POST['default_timezone']*60*60;
168
}
169
// End path and timezone details code
170

  
171
// Get the default language
172
$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');
173
if(!isset($_POST['default_language']) OR !in_array($_POST['default_language'], $allowed_languages)) {
174
	set_error('Please select a valid default backend language','default_language');
175
} else {
176
	$default_language = $_POST['default_language'];
177
	// make sure the selected language file exists in the language folder
178
	if(!file_exists('../languages/' .$default_language .'.php')) {
179
		set_error('The language file: \'' .$default_language .'.php\' is missing. Upload file to language folder or choose another language','default_language');
180
	}
181
}
182
// End default language details code
183

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

  
204
// Begin database details code
205
// Check if user has entered a database host
206
if(!isset($_POST['database_host']) OR $_POST['database_host'] == '') {
207
	set_error('Please enter a database host name', 'database_host');
208
} else {
209
	$database_host = $_POST['database_host'];
210
}
211
// Check if user has entered a database username
212
if(!isset($_POST['database_username']) OR $_POST['database_username'] == '') {
213
	set_error('Please enter a database username','database_username');
214
} else {
215
	$database_username = $_POST['database_username'];
216
}
217
// Check if user has entered a database password
218
if(!isset($_POST['database_password'])) {
219
	set_error('Please enter a database password', 'database_password');
220
} else {
221
	$database_password = $_POST['database_password'];
222
}
223
// Check if user has entered a database name
224
if(!isset($_POST['database_name']) OR $_POST['database_name'] == '') {
225
	set_error('Please enter a database name', 'database_name');
226
} else {
227
	// make sure only allowed characters are specified
228
	if(preg_match('/[^a-z0-9_-]+/i', $_POST['database_name'])) {
229
		// contains invalid characters (only a-z, A-Z, 0-9 and _ allowed to avoid problems with table/field names)
230
		set_error('Only characters a-z, A-Z, 0-9, - and _ allowed in database name.', 'database_name');
231
	}
232
	$database_name = $_POST['database_name'];
233
}
234
// Get table prefix
235
if(preg_match('/[^a-z0-9_]+/i', $_POST['table_prefix'])) {
236
	// contains invalid characters (only a-z, A-Z, 0-9 and _ allowed to avoid problems with table/field names)
237
	set_error('Only characters a-z, A-Z, 0-9 and _ allowed in table_prefix.', 'table_prefix');
238
} else {
239
	$table_prefix = $_POST['table_prefix'];
240
}
241

  
242
// Find out if the user wants to install tables and data
243
if(isset($_POST['install_tables']) AND $_POST['install_tables'] == 'true') {
244
	$install_tables = true;
245
} else {
246
	$install_tables = false;
247
}
248
// End database details code
249

  
250
// Begin website title code
251
// Get website title
252
if(!isset($_POST['website_title']) OR $_POST['website_title'] == '') {
253
	set_error('Please enter a website title', 'website_title');
254
} else {
255
	$website_title = add_slashes($_POST['website_title']);
256
}
257
// End website title code
258

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

  
292
// Try and write settings to config file
293
$config_content = "" .
294
"<?php\n".
295
"\n".
296
"define('DB_TYPE', 'mysql');\n".
297
"define('DB_HOST', '$database_host');\n".
298
"define('DB_USERNAME', '$database_username');\n".
299
"define('DB_PASSWORD', '$database_password');\n".
300
"define('DB_NAME', '$database_name');\n".
301
"define('TABLE_PREFIX', '$table_prefix');\n".
302
"\n".
303
"define('WB_PATH', dirname(__FILE__));\n".
304
"define('WB_URL', '$wb_url');\n".
305
"define('ADMIN_PATH', WB_PATH.'/admin');\n".
306
"define('ADMIN_URL', '$wb_url/admin');\n".
307
"\n".
308
"require_once(WB_PATH.'/framework/initialize.php');\n".
309
"\n".
310
"?>";
311

  
312
$config_filename = '../config.php';
313

  
314
// Check if the file exists and is writable first.
315
if(file_exists($config_filename) AND is_writable($config_filename)) {
316
	if(!$handle = fopen($config_filename, 'w')) {
317
		set_error("Cannot open the configuration file ($config_filename)");
318
	} else {
319
		if (fwrite($handle, $config_content) === FALSE) {
320
			set_error("Cannot write to the configuration file ($config_filename)");
321
		}
322
		// Close file
323
		fclose($handle);
324
	}
325
} else {
326
	set_error("The configuration file $config_filename is not writable. Change its permissions so it is, then re-run step 4.");
327
}
328

  
329
// Define configuration vars
330
define('DB_TYPE', 'mysql');
331
define('DB_HOST', $database_host);
332
define('DB_USERNAME', $database_username);
333
define('DB_PASSWORD', $database_password);
334
define('DB_NAME', $database_name);
335
define('TABLE_PREFIX', $table_prefix);
336
define('WB_PATH', str_replace(array('/install','\install'), '',dirname(__FILE__)));
337
define('WB_URL', $wb_url);
338
define('ADMIN_PATH', WB_PATH.'/admin');
339
define('ADMIN_URL', $wb_url.'/admin');
340

  
341
// Check if the user has entered a correct path
342
if(!file_exists(WB_PATH.'/framework/class.admin.php')) {
343
	set_error('It appears the Absolute path that you entered is incorrect');
344
}
345

  
346
// Try connecting to database	
347
if(!@mysql_connect(DB_HOST, DB_USERNAME, DB_PASSWORD)) {
348
	set_error('Database host name, username and/or password incorrect. MySQL Error:<br />'.mysql_error());
349
}
350

  
351
// Try to create the database
352
mysql_query('CREATE DATABASE `'.$database_name.'`');
353

  
354
// Close the mysql connection
355
mysql_close();
356

  
357
$sSecMod = (defined('SECURE_FORM_MODULE') && SECURE_FORM_MODULE != '') ? '.'.SECURE_FORM_MODULE : '';
358
$sSecMod = WB_PATH.'/framework/SecureForm'.$sSecMod.'.php';
359
require_once($sSecMod);
360

  
361
// Include WB functions file
362
require_once(WB_PATH.'/framework/functions.php');
363

  
364
// Re-connect to the database, this time using in-build database class
365
require_once(WB_PATH.'/framework/class.login.php');
366
$database=new database();
367

  
368
// Check if we should install tables
369
if($install_tables == true) {
370
	if (!defined('WB_INSTALL_PROCESS')) define ('WB_INSTALL_PROCESS', true);
371
	// Remove tables if they exist
372

  
373
	// Pages table
374
	$pages = "DROP TABLE IF EXISTS `".TABLE_PREFIX."pages`";
375
	$database->query($pages);
376
	// Sections table
377
	$sections = "DROP TABLE IF EXISTS `".TABLE_PREFIX."sections`";
378
	$database->query($sections);
379
	// Settings table
380
	$settings = "DROP TABLE IF EXISTS `".TABLE_PREFIX."settings`";
381
	$database->query($settings);
382
	// Users table
383
	$users = "DROP TABLE IF EXISTS `".TABLE_PREFIX."users`";
384
	$database->query($users);
385
	// Groups table
386
	$groups = "DROP TABLE IF EXISTS `".TABLE_PREFIX."groups`";
387
	$database->query($groups);
388
	// Search table
389
	$search = "DROP TABLE IF EXISTS `".TABLE_PREFIX."search`";
390
	$database->query($search);
391
	// Addons table
392
	$addons = "DROP TABLE IF EXISTS `".TABLE_PREFIX."addons`";
393
	$database->query($addons);
394
				
395
	// Try installing tables
396
	
397
	// Pages table
398
	$pages = 'CREATE TABLE `'.TABLE_PREFIX.'pages` ( `page_id` INT NOT NULL auto_increment,'
399
	       . ' `parent` INT NOT NULL DEFAULT \'0\','
400
	       . ' `root_parent` INT NOT NULL DEFAULT \'0\','
401
	       . ' `level` INT NOT NULL DEFAULT \'0\','
402
	       . ' `link` TEXT NOT NULL,'
403
	       . ' `target` VARCHAR( 7 ) NOT NULL DEFAULT \'\' ,'
404
	       . ' `page_title` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
405
	       . ' `menu_title` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
406
	       . ' `description` TEXT NOT NULL ,'
407
	       . ' `keywords` TEXT NOT NULL ,'
408
	       . ' `page_trail` TEXT NOT NULL  ,'
409
	       . ' `template` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
410
	       . ' `visibility` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
411
	       . ' `position` INT NOT NULL DEFAULT \'0\','
412
	       . ' `menu` INT NOT NULL DEFAULT \'0\','
413
	       . ' `language` VARCHAR( 5 ) NOT NULL DEFAULT \'\' ,'
414
	       . ' `searching` INT NOT NULL DEFAULT \'0\','
415
	       . ' `admin_groups` TEXT NOT NULL ,'
416
	       . ' `admin_users` TEXT NOT NULL ,'
417
	       . ' `viewing_groups` TEXT NOT NULL ,'
418
	       . ' `viewing_users` TEXT NOT NULL ,'
419
	       . ' `modified_when` INT NOT NULL DEFAULT \'0\','
420
	       . ' `modified_by` INT NOT NULL  DEFAULT \'0\','
421
	       . ' PRIMARY KEY ( `page_id` ) '
422
	       . ' )';
423
	$database->query($pages);
424
	
425
	// Sections table
426
	$pages = 'CREATE TABLE `'.TABLE_PREFIX.'sections` ( `section_id` INT NOT NULL auto_increment,'
427
	       . ' `page_id` INT NOT NULL DEFAULT \'0\','
428
	       . ' `position` INT NOT NULL DEFAULT \'0\','
429
	       . ' `module` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
430
	       . ' `block` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
431
	       . ' `publ_start` VARCHAR( 255 ) NOT NULL DEFAULT \'0\' ,'
432
	       . ' `publ_end` VARCHAR( 255 ) NOT NULL DEFAULT \'0\' ,' 
433
	       . ' PRIMARY KEY ( `section_id` ) '
434
	       . ' )';
435
	$database->query($pages);
436

  
437
	require(ADMIN_PATH.'/interface/version.php');
438
	
439
	// Settings table
440
	$settings='CREATE TABLE `'.TABLE_PREFIX.'settings` ( `setting_id` INT NOT NULL auto_increment,'
441
		. ' `name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
442
		. ' `value` TEXT NOT NULL ,'
443
		. ' PRIMARY KEY ( `setting_id` ) '
444
		. ' )';
445
	$database->query($settings);
446

  
447
	$settings_rows=	"INSERT INTO `".TABLE_PREFIX."settings` "
448
	." (name, value) VALUES "
449
	." ('wb_version', '".VERSION."'),"
450
	." ('website_title', '$website_title'),"
451
	." ('website_description', ''),"
452
	." ('website_keywords', ''),"
453
	." ('website_header', ''),"
454
	." ('website_footer', ''),"
455
	." ('wysiwyg_style', 'font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;'),"
456
	." ('rename_files_on_upload', 'php,asp,phpx,aspx'),"
457
	." ('er_level', ''),"
458
	." ('default_language', '$default_language'),"
459
	." ('app_name', 'wb_$session_rand'),"
460
	." ('sec_anchor', 'wb_'),"
461
	." ('default_timezone', '$default_timezone'),"
462
	." ('default_date_format', 'M d Y'),"
463
	." ('default_time_format', 'g:i A'),"
464
	." ('redirect_timer', '1500'),"
465
	." ('home_folders', 'true'),"
466
	." ('warn_page_leave', '1'),"
467
	." ('default_template', 'round'),"
468
	." ('default_theme', 'wb_theme'),"
469
	." ('default_charset', 'utf-8'),"
470
	." ('multiple_menus', 'true'),"
471
	." ('page_level_limit', '4'),"
472
	." ('intro_page', 'false'),"
473
	." ('page_trash', 'inline'),"
474
	." ('homepage_redirection', 'false'),"
475
	." ('page_languages', 'true'),"
476
	." ('wysiwyg_editor', 'fckeditor'),"
477
	." ('manage_sections', 'true'),"
478
	." ('section_blocks', 'true'),"
479
	." ('smart_login', 'true'),"
480
	." ('frontend_login', 'false'),"
481
	." ('frontend_signup', 'false'),"
482
	." ('search', 'public'),"
483
	." ('page_extension', '.php'),"
484
	." ('page_spacer', '-'),"
485
	." ('pages_directory', '/pages'),"
486
	." ('media_directory', '/media'),"
487
	." ('operating_system', '$operating_system'),"
488
	." ('string_file_mode', '$file_mode'),"
489
	." ('string_dir_mode', '$dir_mode'),"
490
	." ('wbmailer_routine', 'phpmail'),"
491
	." ('server_email', 'admin@yourdomain.com'),"		// avoid that mail provider (e.g. mail.com) reject mails like yourname@mail.com
492
	." ('wbmailer_default_sendername', 'WB Mailer'),"
493
	." ('wbmailer_smtp_host', ''),"
494
	." ('wbmailer_smtp_auth', ''),"
495
	." ('wbmailer_smtp_username', ''),"
496
	." ('wbmailer_smtp_password', ''),"
497
	." ('fingerprint_with_ip_octets', '3'),"
498
	." ('mediasettings', '')";
499
	$database->query($settings_rows);
500
	
501
	// Users table
502
	$users = 'CREATE TABLE `'.TABLE_PREFIX.'users` ( `user_id` INT NOT NULL auto_increment,'
503
	       . ' `group_id` INT NOT NULL DEFAULT \'0\','
504
	       . ' `groups_id` VARCHAR( 255 ) NOT NULL DEFAULT \'0\','
505
	       . ' `active` INT NOT NULL DEFAULT \'0\','
506
	       . ' `username` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
507
	       . ' `password` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
508
	       . ' `remember_key` VARCHAR( 255 ) NOT NULL DEFAULT \'\','
509
	       . ' `last_reset` INT NOT NULL DEFAULT \'0\','
510
	       . ' `display_name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
511
	       . ' `email` TEXT NOT NULL ,'
512
	       . ' `timezone` INT NOT NULL DEFAULT \'0\','
513
	       . ' `date_format` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
514
	       . ' `time_format` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
515
	       . ' `language` VARCHAR( 5 ) NOT NULL DEFAULT \'' .$default_language .'\' ,'
516
	       . ' `home_folder` TEXT NOT NULL ,'
517
	       . ' `login_when` INT NOT NULL  DEFAULT \'0\','
518
	       . ' `login_ip` VARCHAR( 15 ) NOT NULL DEFAULT \'\' ,'
519
	       . ' PRIMARY KEY ( `user_id` ) '
520
	       . ' )';
521
	$database->query($users);
522
	
523
	// Groups table
524
	$groups = 'CREATE TABLE `'.TABLE_PREFIX.'groups` ( `group_id` INT NOT NULL auto_increment,'
525
	        . ' `name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
526
	        . ' `system_permissions` TEXT NOT NULL ,'
527
	        . ' `module_permissions` TEXT NOT NULL ,'
528
	        . ' `template_permissions` TEXT NOT NULL ,'
529
	        . ' PRIMARY KEY ( `group_id` ) '
530
	        . ' )';
531
	$database->query($groups);
532
	
533
	// Search settings table
534
	$search = 'CREATE TABLE `'.TABLE_PREFIX.'search` ( `search_id` INT NOT NULL auto_increment,'
535
	        . ' `name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
536
	        . ' `value` TEXT NOT NULL ,'
537
	        . ' `extra` TEXT NOT NULL ,'
538
	        . ' PRIMARY KEY ( `search_id` ) '
539
	        . ' )';
540
	$database->query($search);
541
	
542
	// Addons table
543
	$addons = 'CREATE TABLE `'.TABLE_PREFIX.'addons` ( '
544
			.'`addon_id` INT NOT NULL auto_increment ,'
545
			.'`type` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
546
			.'`directory` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
547
			.'`name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
548
			.'`description` TEXT NOT NULL ,'
549
			.'`function` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
550
			.'`version` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
551
			.'`platform` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
552
			.'`author` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
553
			.'`license` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
554
			.' PRIMARY KEY ( `addon_id` ) '
555
			.' )';
556
	$database->query($addons);
557

  
558
	// Insert default data
559
	
560
	// Admin group
561
	$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,admintools';
562
	$insert_admin_group = "INSERT INTO `".TABLE_PREFIX."groups` VALUES ('1', 'Administrators', '$full_system_permissions', '', '')";
563
	$database->query($insert_admin_group);
564
	// Admin user
565
	$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')";
566
	$database->query($insert_admin_user);
567
	
568
	// Search header
569
	$search_header = addslashes('
570
<h1>[TEXT_SEARCH]</h1>
571

  
572
<form name="searchpage" action="[WB_URL]/search/index.php" method="get">
573
<table cellpadding="3" cellspacing="0" border="0" width="500">
574
<tr>
575
<td>
576
<input type="hidden" name="search_path" value="[SEARCH_PATH]" />
577
<input type="text" name="string" value="[SEARCH_STRING]" style="width: 100%;" />
578
</td>
579
<td width="150">
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff