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: save.php 1529 2011-11-25 05:03:32Z Luisehahne $
|
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
|
|
86
|
// Function to workout what the default permissions are for files created by the webserver
|
87
|
function default_file_mode($temp_dir) {
|
88
|
$v = explode(".",PHP_VERSION);
|
89
|
$v = $v[0].$v[1];
|
90
|
if($v > 41 AND is_writable($temp_dir)) {
|
91
|
$filename = $temp_dir.'/test_permissions.txt';
|
92
|
$handle = fopen($filename, 'w');
|
93
|
fwrite($handle, 'This file is to get the default file permissions');
|
94
|
fclose($handle);
|
95
|
$default_file_mode = '0'.substr(sprintf('%o', fileperms($filename)), -3);
|
96
|
unlink($filename);
|
97
|
} else {
|
98
|
$default_file_mode = '0777';
|
99
|
}
|
100
|
return $default_file_mode;
|
101
|
}
|
102
|
|
103
|
// Function to workout what the default permissions are for directories created by the webserver
|
104
|
function default_dir_mode($temp_dir) {
|
105
|
$v = explode(".",PHP_VERSION);
|
106
|
$v = $v[0].$v[1];
|
107
|
if($v > 41 AND is_writable($temp_dir)) {
|
108
|
$dirname = $temp_dir.'/test_permissions/';
|
109
|
mkdir($dirname);
|
110
|
$default_dir_mode = '0'.substr(sprintf('%o', fileperms($dirname)), -3);
|
111
|
rmdir($dirname);
|
112
|
} else {
|
113
|
$default_dir_mode = '0777';
|
114
|
}
|
115
|
return $default_dir_mode;
|
116
|
}
|
117
|
|
118
|
function add_slashes($input) {
|
119
|
if ( get_magic_quotes_gpc() || ( !is_string($input) ) ) {
|
120
|
return $input;
|
121
|
}
|
122
|
$output = addslashes($input);
|
123
|
return $output;
|
124
|
}
|
125
|
|
126
|
// Begin check to see if form was even submitted
|
127
|
// Set error if no post vars found
|
128
|
if(!isset($_POST['website_title'])) {
|
129
|
set_error('Please fill-in the form below');
|
130
|
}
|
131
|
// End check to see if form was even submitted
|
132
|
|
133
|
// Begin path and timezone details code
|
134
|
|
135
|
// Check if user has entered the installation url
|
136
|
if(!isset($_POST['wb_url']) OR $_POST['wb_url'] == '') {
|
137
|
set_error('Please enter an absolute URL', 'wb_url');
|
138
|
} else {
|
139
|
$wb_url = $_POST['wb_url'];
|
140
|
}
|
141
|
// Remove any slashes at the end of the URL
|
142
|
if(substr($wb_url, strlen($wb_url)-1, 1) == "/") {
|
143
|
$wb_url = substr($wb_url, 0, strlen($wb_url)-1);
|
144
|
}
|
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
|
// Get the default time zone
|
155
|
if(!isset($_POST['default_timezone']) OR !is_numeric($_POST['default_timezone'])) {
|
156
|
set_error('Please select a valid default timezone', 'default_timezone');
|
157
|
} else {
|
158
|
$default_timezone = $_POST['default_timezone']*60*60;
|
159
|
}
|
160
|
// End path and timezone details code
|
161
|
|
162
|
// Get the default language
|
163
|
$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');
|
164
|
if(!isset($_POST['default_language']) OR !in_array($_POST['default_language'], $allowed_languages)) {
|
165
|
set_error('Please select a valid default backend language','default_language');
|
166
|
} else {
|
167
|
$default_language = $_POST['default_language'];
|
168
|
// make sure the selected language file exists in the language folder
|
169
|
if(!file_exists('../languages/' .$default_language .'.php')) {
|
170
|
set_error('The language file: \'' .$default_language .'.php\' is missing. Upload file to language folder or choose another language','default_language');
|
171
|
}
|
172
|
}
|
173
|
// End default language details code
|
174
|
|
175
|
// Begin operating system specific code
|
176
|
// Get operating system
|
177
|
if(!isset($_POST['operating_system']) OR $_POST['operating_system'] != 'linux' AND $_POST['operating_system'] != 'windows') {
|
178
|
set_error('Please select a valid operating system');
|
179
|
} else {
|
180
|
$operating_system = $_POST['operating_system'];
|
181
|
}
|
182
|
// Work-out file permissions
|
183
|
if($operating_system == 'windows') {
|
184
|
$file_mode = '0777';
|
185
|
$dir_mode = '0777';
|
186
|
} elseif(isset($_POST['world_writeable']) AND $_POST['world_writeable'] == 'true') {
|
187
|
$file_mode = '0777';
|
188
|
$dir_mode = '0777';
|
189
|
} else {
|
190
|
$file_mode = default_file_mode('../temp');
|
191
|
$dir_mode = default_dir_mode('../temp');
|
192
|
}
|
193
|
// End operating system specific code
|
194
|
|
195
|
// Begin database details code
|
196
|
// Check if user has entered a database host
|
197
|
if(!isset($_POST['database_host']) OR $_POST['database_host'] == '') {
|
198
|
set_error('Please enter a database host name', 'database_host');
|
199
|
} else {
|
200
|
$database_host = $_POST['database_host'];
|
201
|
}
|
202
|
// Check if user has entered a database username
|
203
|
if(!isset($_POST['database_username']) OR $_POST['database_username'] == '') {
|
204
|
set_error('Please enter a database username','database_username');
|
205
|
} else {
|
206
|
$database_username = $_POST['database_username'];
|
207
|
}
|
208
|
// Check if user has entered a database password
|
209
|
if(!isset($_POST['database_password'])) {
|
210
|
set_error('Please enter a database password', 'database_password');
|
211
|
} else {
|
212
|
$database_password = $_POST['database_password'];
|
213
|
}
|
214
|
// Check if user has entered a database name
|
215
|
if(!isset($_POST['database_name']) OR $_POST['database_name'] == '') {
|
216
|
set_error('Please enter a database name', 'database_name');
|
217
|
} else {
|
218
|
// make sure only allowed characters are specified
|
219
|
if(preg_match('/[^a-z0-9_-]+/i', $_POST['database_name'])) {
|
220
|
// contains invalid characters (only a-z, A-Z, 0-9 and _ allowed to avoid problems with table/field names)
|
221
|
set_error('Only characters a-z, A-Z, 0-9, - and _ allowed in database name.', 'database_name');
|
222
|
}
|
223
|
$database_name = $_POST['database_name'];
|
224
|
}
|
225
|
// Get table prefix
|
226
|
if(preg_match('/[^a-z0-9_]+/i', $_POST['table_prefix'])) {
|
227
|
// contains invalid characters (only a-z, A-Z, 0-9 and _ allowed to avoid problems with table/field names)
|
228
|
set_error('Only characters a-z, A-Z, 0-9 and _ allowed in table_prefix.', 'table_prefix');
|
229
|
} else {
|
230
|
$table_prefix = $_POST['table_prefix'];
|
231
|
}
|
232
|
|
233
|
// Find out if the user wants to install tables and data
|
234
|
if(isset($_POST['install_tables']) AND $_POST['install_tables'] == 'true') {
|
235
|
$install_tables = true;
|
236
|
} else {
|
237
|
$install_tables = false;
|
238
|
}
|
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('DB_TYPE', 'mysql');\n".
|
288
|
"define('DB_HOST', '$database_host');\n".
|
289
|
"define('DB_NAME', '$database_name');\n".
|
290
|
"define('DB_USERNAME', '$database_username');\n".
|
291
|
"define('DB_PASSWORD', '$database_password');\n".
|
292
|
"define('TABLE_PREFIX', '$table_prefix');\n".
|
293
|
"\n".
|
294
|
"define('WB_PATH', dirname(__FILE__));\n".
|
295
|
"define('WB_URL', '$wb_url');\n".
|
296
|
"define('ADMIN_PATH', WB_PATH.'/admin');\n".
|
297
|
"define('ADMIN_URL', WB_URL.'/admin');\n".
|
298
|
"\n".
|
299
|
"require_once(WB_PATH.'/framework/initialize.php');\n".
|
300
|
"\n".
|
301
|
"";
|
302
|
|
303
|
$config_filename = '../config.php';
|
304
|
|
305
|
// Check if the file exists and is writable first.
|
306
|
if(file_exists($config_filename) AND is_writable($config_filename)) {
|
307
|
if(!$handle = fopen($config_filename, 'w')) {
|
308
|
set_error("Cannot open the configuration file ($config_filename)");
|
309
|
} else {
|
310
|
if (fwrite($handle, $config_content) === FALSE) {
|
311
|
set_error("Cannot write to the configuration file ($config_filename)");
|
312
|
}
|
313
|
// Close file
|
314
|
fclose($handle);
|
315
|
}
|
316
|
} else {
|
317
|
set_error("The configuration file $config_filename is not writable. Change its permissions so it is, then re-run step 4.");
|
318
|
}
|
319
|
|
320
|
// Define configuration vars
|
321
|
define('DB_TYPE', 'mysql');
|
322
|
define('DB_HOST', $database_host);
|
323
|
define('DB_NAME', $database_name);
|
324
|
define('DB_USERNAME', $database_username);
|
325
|
define('DB_PASSWORD', $database_password);
|
326
|
define('TABLE_PREFIX', $table_prefix);
|
327
|
define('WB_PATH', str_replace(array('/install','\install'), '',dirname(__FILE__)));
|
328
|
define('WB_URL', $wb_url);
|
329
|
define('ADMIN_PATH', WB_PATH.'/admin');
|
330
|
define('ADMIN_URL', $wb_url.'/admin');
|
331
|
|
332
|
// Check if the user has entered a correct path
|
333
|
if(!file_exists(WB_PATH.'/framework/class.admin.php')) {
|
334
|
set_error('It appears the Absolute path that you entered is incorrect');
|
335
|
}
|
336
|
|
337
|
// Try connecting to database
|
338
|
if(!@mysql_connect(DB_HOST, DB_USERNAME, DB_PASSWORD)) {
|
339
|
set_error('Database host name, username and/or password incorrect. MySQL Error:<br />'.mysql_error());
|
340
|
}
|
341
|
|
342
|
// Try to create the database
|
343
|
mysql_query('CREATE DATABASE `'.$database_name.'`');
|
344
|
|
345
|
// Close the mysql connection
|
346
|
mysql_close();
|
347
|
|
348
|
$sSecMod = (defined('SECURE_FORM_MODULE') && SECURE_FORM_MODULE != '') ? '.'.SECURE_FORM_MODULE : '';
|
349
|
$sSecMod = WB_PATH.'/framework/SecureForm'.$sSecMod.'.php';
|
350
|
require_once($sSecMod);
|
351
|
|
352
|
require_once(WB_PATH.'/framework/class.admin.php');
|
353
|
|
354
|
// Dummy class to allow modules' install scripts to call $admin->print_error
|
355
|
class admin_dummy extends admin
|
356
|
{
|
357
|
var $error='';
|
358
|
function print_error($message)
|
359
|
{
|
360
|
$this->error=$message;
|
361
|
}
|
362
|
}
|
363
|
|
364
|
// Include WB functions file
|
365
|
require_once(WB_PATH.'/framework/functions.php');
|
366
|
|
367
|
// Re-connect to the database, this time using in-build database class
|
368
|
require_once(WB_PATH.'/framework/class.login.php');
|
369
|
|
370
|
$database=new database();
|
371
|
|
372
|
// Check if we should install tables
|
373
|
if($install_tables == true) {
|
374
|
if (!defined('WB_INSTALL_PROCESS')) define ('WB_INSTALL_PROCESS', true);
|
375
|
// Remove tables if they exist
|
376
|
|
377
|
// Pages table
|
378
|
$pages = "DROP TABLE IF EXISTS `".TABLE_PREFIX."pages`";
|
379
|
$database->query($pages);
|
380
|
// Sections table
|
381
|
$sections = "DROP TABLE IF EXISTS `".TABLE_PREFIX."sections`";
|
382
|
$database->query($sections);
|
383
|
// Settings table
|
384
|
$settings = "DROP TABLE IF EXISTS `".TABLE_PREFIX."settings`";
|
385
|
$database->query($settings);
|
386
|
// Users table
|
387
|
$users = "DROP TABLE IF EXISTS `".TABLE_PREFIX."users`";
|
388
|
$database->query($users);
|
389
|
// Groups table
|
390
|
$groups = "DROP TABLE IF EXISTS `".TABLE_PREFIX."groups`";
|
391
|
$database->query($groups);
|
392
|
// Search table
|
393
|
$search = "DROP TABLE IF EXISTS `".TABLE_PREFIX."search`";
|
394
|
$database->query($search);
|
395
|
// Addons table
|
396
|
$addons = "DROP TABLE IF EXISTS `".TABLE_PREFIX."addons`";
|
397
|
$database->query($addons);
|
398
|
|
399
|
// Try installing tables
|
400
|
|
401
|
// Pages table
|
402
|
$pages = 'CREATE TABLE `'.TABLE_PREFIX.'pages` ( `page_id` INT NOT NULL auto_increment,'
|
403
|
. ' `parent` INT NOT NULL DEFAULT \'0\','
|
404
|
. ' `root_parent` INT NOT NULL DEFAULT \'0\','
|
405
|
. ' `level` INT NOT NULL DEFAULT \'0\','
|
406
|
. ' `link` TEXT NOT NULL,'
|
407
|
. ' `target` VARCHAR( 7 ) NOT NULL DEFAULT \'\' ,'
|
408
|
. ' `page_title` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
409
|
. ' `menu_title` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
410
|
. ' `description` TEXT NOT NULL ,'
|
411
|
. ' `keywords` TEXT NOT NULL ,'
|
412
|
. ' `page_trail` TEXT NOT NULL ,'
|
413
|
. ' `template` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
414
|
. ' `visibility` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
415
|
. ' `position` INT NOT NULL DEFAULT \'0\','
|
416
|
. ' `menu` INT NOT NULL DEFAULT \'0\','
|
417
|
. ' `language` VARCHAR( 5 ) NOT NULL DEFAULT \'\' ,'
|
418
|
. ' `searching` INT NOT NULL DEFAULT \'0\','
|
419
|
. ' `admin_groups` TEXT NOT NULL ,'
|
420
|
. ' `admin_users` TEXT NOT NULL ,'
|
421
|
. ' `viewing_groups` TEXT NOT NULL ,'
|
422
|
. ' `viewing_users` TEXT NOT NULL ,'
|
423
|
. ' `modified_when` INT NOT NULL DEFAULT \'0\','
|
424
|
. ' `modified_by` INT NOT NULL DEFAULT \'0\','
|
425
|
. ' PRIMARY KEY ( `page_id` ) '
|
426
|
. ' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
|
427
|
$database->query($pages);
|
428
|
|
429
|
// Sections table
|
430
|
$pages = 'CREATE TABLE `'.TABLE_PREFIX.'sections` ( `section_id` INT NOT NULL auto_increment,'
|
431
|
. ' `page_id` INT NOT NULL DEFAULT \'0\','
|
432
|
. ' `position` INT NOT NULL DEFAULT \'0\','
|
433
|
. ' `module` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
434
|
. ' `block` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
435
|
. ' `publ_start` VARCHAR( 255 ) NOT NULL DEFAULT \'0\' ,'
|
436
|
. ' `publ_end` VARCHAR( 255 ) NOT NULL DEFAULT \'0\' ,'
|
437
|
. ' PRIMARY KEY ( `section_id` ) '
|
438
|
. ' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
|
439
|
$database->query($pages);
|
440
|
|
441
|
require(ADMIN_PATH.'/interface/version.php');
|
442
|
|
443
|
// Settings table
|
444
|
$settings='CREATE TABLE `'.TABLE_PREFIX.'settings` ( `setting_id` INT NOT NULL auto_increment,'
|
445
|
. ' `name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
446
|
. ' `value` TEXT NOT NULL ,'
|
447
|
. ' PRIMARY KEY ( `setting_id` ) '
|
448
|
. ' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
|
449
|
$database->query($settings);
|
450
|
|
451
|
$settings_rows= "INSERT INTO `".TABLE_PREFIX."settings` "
|
452
|
." (name, value) VALUES "
|
453
|
." ('wb_version', '".VERSION."'),"
|
454
|
." ('website_title', '$website_title'),"
|
455
|
." ('website_description', ''),"
|
456
|
." ('website_keywords', ''),"
|
457
|
." ('website_header', ''),"
|
458
|
." ('website_footer', ''),"
|
459
|
." ('wysiwyg_style', 'font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;'),"
|
460
|
." ('er_level', ''),"
|
461
|
." ('default_language', '$default_language'),"
|
462
|
." ('app_name', 'wb_$session_rand'),"
|
463
|
." ('sec_anchor', 'wb_'),"
|
464
|
." ('default_timezone', '$default_timezone'),"
|
465
|
." ('default_date_format', 'M d Y'),"
|
466
|
." ('default_time_format', 'g:i A'),"
|
467
|
." ('redirect_timer', '1500'),"
|
468
|
." ('home_folders', 'true'),"
|
469
|
." ('warn_page_leave', '1'),"
|
470
|
." ('default_template', 'round'),"
|
471
|
." ('default_theme', 'wb_theme'),"
|
472
|
." ('default_charset', 'utf-8'),"
|
473
|
." ('multiple_menus', 'true'),"
|
474
|
." ('page_level_limit', '4'),"
|
475
|
." ('intro_page', 'false'),"
|
476
|
." ('page_trash', 'inline'),"
|
477
|
." ('homepage_redirection', 'false'),"
|
478
|
." ('page_languages', 'true'),"
|
479
|
." ('wysiwyg_editor', 'fckeditor'),"
|
480
|
." ('manage_sections', 'true'),"
|
481
|
." ('section_blocks', 'true'),"
|
482
|
." ('smart_login', 'true'),"
|
483
|
." ('frontend_login', 'false'),"
|
484
|
." ('frontend_signup', 'false'),"
|
485
|
." ('search', 'public'),"
|
486
|
." ('page_extension', '.php'),"
|
487
|
." ('page_spacer', '-'),"
|
488
|
." ('pages_directory', '/pages'),"
|
489
|
." ('rename_files_on_upload', 'ph.*?,cgi,pl,pm,exe,com,bat,pif,cmd,src,asp,aspx'),"
|
490
|
." ('media_directory', '/media'),"
|
491
|
." ('operating_system', '$operating_system'),"
|
492
|
." ('string_file_mode', '$file_mode'),"
|
493
|
." ('string_dir_mode', '$dir_mode'),"
|
494
|
." ('wbmailer_routine', 'phpmail'),"
|
495
|
." ('server_email', 'admin@yourdomain.com')," // avoid that mail provider (e.g. mail.com) reject mails like yourname@mail.com
|
496
|
." ('wbmailer_default_sendername', 'WB Mailer'),"
|
497
|
." ('wbmailer_smtp_host', ''),"
|
498
|
." ('wbmailer_smtp_auth', ''),"
|
499
|
." ('wbmailer_smtp_username', ''),"
|
500
|
." ('wbmailer_smtp_password', ''),"
|
501
|
." ('fingerprint_with_ip_octets', '3'),"
|
502
|
." ('secure_form_module', ''),"
|
503
|
." ('mediasettings', '')";
|
504
|
$database->query($settings_rows);
|
505
|
|
506
|
// Users table
|
507
|
$users = 'CREATE TABLE `'.TABLE_PREFIX.'users` ( `user_id` INT NOT NULL auto_increment,'
|
508
|
. ' `group_id` INT NOT NULL DEFAULT \'0\','
|
509
|
. ' `groups_id` VARCHAR( 255 ) NOT NULL DEFAULT \'0\','
|
510
|
. ' `active` INT NOT NULL DEFAULT \'0\','
|
511
|
. ' `username` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
512
|
. ' `password` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
513
|
. ' `remember_key` VARCHAR( 255 ) NOT NULL DEFAULT \'\','
|
514
|
. ' `last_reset` INT NOT NULL DEFAULT \'0\','
|
515
|
. ' `display_name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
516
|
. ' `email` TEXT NOT NULL ,'
|
517
|
. ' `timezone` INT NOT NULL DEFAULT \'0\','
|
518
|
. ' `date_format` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
519
|
. ' `time_format` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
520
|
. ' `language` VARCHAR( 5 ) NOT NULL DEFAULT \'' .$default_language .'\' ,'
|
521
|
. ' `home_folder` TEXT NOT NULL ,'
|
522
|
. ' `login_when` INT NOT NULL DEFAULT \'0\','
|
523
|
. ' `login_ip` VARCHAR( 15 ) NOT NULL DEFAULT \'\' ,'
|
524
|
. ' PRIMARY KEY ( `user_id` ) '
|
525
|
. ' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
|
526
|
$database->query($users);
|
527
|
|
528
|
// Groups table
|
529
|
$groups = 'CREATE TABLE `'.TABLE_PREFIX.'groups` ( `group_id` INT NOT NULL auto_increment,'
|
530
|
. ' `name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
531
|
. ' `system_permissions` TEXT NOT NULL ,'
|
532
|
. ' `module_permissions` TEXT NOT NULL ,'
|
533
|
. ' `template_permissions` TEXT NOT NULL ,'
|
534
|
. ' PRIMARY KEY ( `group_id` ) '
|
535
|
. ' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
|
536
|
$database->query($groups);
|
537
|
|
538
|
// Search settings table
|
539
|
$search = 'CREATE TABLE `'.TABLE_PREFIX.'search` ( `search_id` INT NOT NULL auto_increment,'
|
540
|
. ' `name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
541
|
. ' `value` TEXT NOT NULL ,'
|
542
|
. ' `extra` TEXT NOT NULL ,'
|
543
|
. ' PRIMARY KEY ( `search_id` ) '
|
544
|
. ' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
|
545
|
$database->query($search);
|
546
|
|
547
|
// Addons table
|
548
|
$addons = 'CREATE TABLE `'.TABLE_PREFIX.'addons` ( '
|
549
|
.'`addon_id` INT NOT NULL auto_increment ,'
|
550
|
.'`type` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
551
|
.'`directory` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
552
|
.'`name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
553
|
.'`description` TEXT NOT NULL ,'
|
554
|
.'`function` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
555
|
.'`version` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
556
|
.'`platform` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
557
|
.'`author` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
558
|
.'`license` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,'
|
559
|
.' PRIMARY KEY ( `addon_id` ) '
|
560
|
.' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
|
561
|
$database->query($addons);
|
562
|
|
563
|
// Insert default data
|
564
|
|
565
|
// Admin group
|
566
|
$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';
|
567
|
$insert_admin_group = "INSERT INTO `".TABLE_PREFIX."groups` VALUES ('1', 'Administrators', '$full_system_permissions', '', '')";
|
568
|
$database->query($insert_admin_group);
|
569
|
// Admin user
|
570
|
$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')";
|
571
|
$database->query($insert_admin_user);
|
572
|
|
573
|
// Search header
|
574
|
$search_header = addslashes('
|
575
|
<h1>[TEXT_SEARCH]</h1>
|
576
|
|
577
|
<form name="searchpage" action="[WB_URL]/search/index.php" method="get">
|
578
|
<table cellpadding="3" cellspacing="0" border="0" width="500">
|
579
|
<tr>
|
580
|
<td>
|
581
|
<input type="hidden" name="search_path" value="[SEARCH_PATH]" />
|
582
|
<input type="text" name="string" value="[SEARCH_STRING]" style="width: 100%;" />
|
583
|
</td>
|
584
|
<td width="150">
|
585
|
<input type="submit" value="[TEXT_SEARCH]" style="width: 100%;" />
|
586
|
</td>
|
587
|
</tr>
|
588
|
<tr>
|
589
|
<td colspan="2">
|
590
|
<input type="radio" name="match" id="match_all" value="all"[ALL_CHECKED] />
|
591
|
<label for="match_all">[TEXT_ALL_WORDS]</label>
|
592
|
<input type="radio" name="match" id="match_any" value="any"[ANY_CHECKED] />
|
593
|
<label for="match_any">[TEXT_ANY_WORDS]</label>
|
594
|
<input type="radio" name="match" id="match_exact" value="exact"[EXACT_CHECKED] />
|
595
|
<label for="match_exact">[TEXT_EXACT_MATCH]</label>
|
596
|
</td>
|
597
|
</tr>
|
598
|
</table>
|
599
|
|
600
|
</form>
|
601
|
|
602
|
<hr />
|
603
|
');
|
604
|
$insert_search_header = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'header', '$search_header', '')";
|
605
|
$database->query($insert_search_header);
|
606
|
// Search footer
|
607
|
$search_footer = addslashes('');
|
608
|
$insert_search_footer = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'footer', '$search_footer', '')";
|
609
|
$database->query($insert_search_footer);
|
610
|
// Search results header
|
611
|
$search_results_header = addslashes(''.
|
612
|
'[TEXT_RESULTS_FOR] \'<b>[SEARCH_STRING]</b>\':
|
613
|
<table cellpadding="2" cellspacing="0" border="0" width="100%" style="padding-top: 10px;">');
|
614
|
$insert_search_results_header = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'results_header', '$search_results_header', '')";
|
615
|
$database->query($insert_search_results_header);
|
616
|
// Search results loop
|
617
|
$search_results_loop = addslashes(''.
|
618
|
'<tr style="background-color: #F0F0F0;">
|
619
|
<td><a href="[LINK]">[TITLE]</a></td>
|
620
|
<td align="right">[TEXT_LAST_UPDATED_BY] [DISPLAY_NAME] ([USERNAME]) [TEXT_ON] [DATE]</td>
|
621
|
</tr>
|
622
|
<tr><td colspan="2" style="text-align: justify; padding-bottom: 5px;">[DESCRIPTION]</td></tr>
|
623
|
<tr><td colspan="2" style="text-align: justify; padding-bottom: 10px;">[EXCERPT]</td></tr>');
|
624
|
|
625
|
$insert_search_results_loop = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'results_loop', '$search_results_loop', '')";
|
626
|
$database->query($insert_search_results_loop);
|
627
|
// Search results footer
|
628
|
$search_results_footer = addslashes("</table>");
|
629
|
$insert_search_results_footer = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'results_footer', '$search_results_footer', '')";
|
630
|
$database->query($insert_search_results_footer);
|
631
|
// Search no results
|
632
|
$search_no_results = addslashes('<tr><td><p>[TEXT_NO_RESULTS]</p></td></tr>');
|
633
|
$insert_search_no_results = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'no_results', '$search_no_results', '')";
|
634
|
$database->query($insert_search_no_results);
|
635
|
// Search module-order
|
636
|
$search_module_order = addslashes('faqbaker,manual,wysiwyg');
|
637
|
$insert_search_module_order = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'module_order', '$search_module_order', '')";
|
638
|
$database->query($insert_search_module_order);
|
639
|
// Search max lines of excerpt
|
640
|
$search_max_excerpt = addslashes('15');
|
641
|
$insert_search_max_excerpt = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'max_excerpt', '$search_max_excerpt', '')";
|
642
|
$database->query($insert_search_max_excerpt);
|
643
|
// max time to search per module
|
644
|
$search_time_limit = addslashes('0');
|
645
|
$insert_search_time_limit = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'time_limit', '$search_time_limit', '')";
|
646
|
$database->query($insert_search_time_limit);
|
647
|
// some config-elements
|
648
|
$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_enable_old_search', 'true', '')");
|
649
|
$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_search_keywords', 'true', '')");
|
650
|
$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_search_description', 'true', '')");
|
651
|
$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_show_description', 'true', '')");
|
652
|
$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_enable_flush', 'false', '')");
|
653
|
// Search template
|
654
|
$database->query("INSERT INTO `".TABLE_PREFIX."search` (name) VALUES ('template')");
|
655
|
|
656
|
require_once(WB_PATH.'/framework/initialize.php');
|
657
|
|
658
|
// Include the PclZip class file (thanks to
|
659
|
require_once(WB_PATH.'/include/pclzip/pclzip.lib.php');
|
660
|
|
661
|
// Install add-ons
|
662
|
if(file_exists(WB_PATH.'/install/modules')) {
|
663
|
// Unpack pre-packaged modules
|
664
|
|
665
|
}
|
666
|
if(file_exists(WB_PATH.'/install/templates')) {
|
667
|
// Unpack pre-packaged templates
|
668
|
|
669
|
}
|
670
|
if(file_exists(WB_PATH.'/install/languages')) {
|
671
|
// Unpack pre-packaged languages
|
672
|
|
673
|
}
|
674
|
|
675
|
$admin=new admin_dummy('Start','',false,false);
|
676
|
|
677
|
// Load addons into DB
|
678
|
$dirs['modules'] = WB_PATH.'/modules/';
|
679
|
$dirs['templates'] = WB_PATH.'/templates/';
|
680
|
$dirs['languages'] = WB_PATH.'/languages/';
|
681
|
foreach($dirs AS $type => $dir) {
|
682
|
if($handle = opendir($dir)) {
|
683
|
while(false !== ($file = readdir($handle))) {
|
684
|
if($file != '' AND substr($file, 0, 1) != '.' AND $file != 'admin.php' AND $file != 'index.php') {
|
685
|
// Get addon type
|
686
|
if($type == 'modules') {
|
687
|
load_module($dir.'/'.$file, true);
|
688
|
// Pretty ugly hack to let modules run $admin->set_error
|
689
|
// See dummy class definition admin_dummy above
|
690
|
if ($admin->error!='') {
|
691
|
set_error($admin->error);
|
692
|
}
|
693
|
} elseif($type == 'templates') {
|
694
|
load_template($dir.'/'.$file);
|
695
|
} elseif($type == 'languages') {
|
696
|
load_language($dir.'/'.$file);
|
697
|
}
|
698
|
}
|
699
|
}
|
700
|
closedir($handle);
|
701
|
}
|
702
|
}
|
703
|
|
704
|
// Check if there was a database error
|
705
|
if($database->is_error()) {
|
706
|
set_error($database->get_error());
|
707
|
}
|
708
|
|
709
|
// end of if install_tables
|
710
|
} else {
|
711
|
/**
|
712
|
* DB - Exists
|
713
|
* Tables also?
|
714
|
*
|
715
|
*/
|
716
|
$requested_tables = array("pages","sections","settings","users","groups","search","addons");
|
717
|
for($i=0;$i<count($requested_tables);$i++) $requested_tables[$i] = $table_prefix.$requested_tables[$i];
|
718
|
|
719
|
$result = mysql_list_tables( DB_NAME );
|
720
|
$all_tables = array();
|
721
|
for($i=0; $i < mysql_num_rows($result); $i++) $all_tables[] = mysql_table_name($result, $i);
|
722
|
|
723
|
$missing_tables = array();
|
724
|
foreach($requested_tables as $temp_table) {
|
725
|
if (!in_array($temp_table, $all_tables)) {
|
726
|
$missing_tables[] = $temp_table;
|
727
|
}
|
728
|
}
|
729
|
|
730
|
/**
|
731
|
* If one or more needed tables are missing, so
|
732
|
* we can't go on and have to display an error
|
733
|
*/
|
734
|
if ( count($missing_tables) > 0 ) {
|
735
|
$error_message = "One or more tables are missing in the selected database <b><font color='#990000'>".DB_NAME."</font></b>.<br />";
|
736
|
$error_message .= "Please install the missing tables or choose 'install tables' as recommend.<br />";
|
737
|
$error_message .= "Missing tables are: <b>".implode(", ", $missing_tables)."</b>";
|
738
|
|
739
|
set_error( $error_message );
|
740
|
}
|
741
|
|
742
|
/**
|
743
|
* Try to get some default settings ...
|
744
|
*/
|
745
|
$vars = array(
|
746
|
'DEFAULT_THEME' => "wb_theme",
|
747
|
'THEME_URL' => WB_URL."/templates/wb_theme",
|
748
|
'THEME_PATH' => WB_PATH."/templates/wb_theme",
|
749
|
'LANGUAGE' => $_POST['default_language'],
|
750
|
'SERVER_EMAIL' => "admin@yourdomain.com",
|
751
|
'SMART_LOGIN' => false
|
752
|
);
|
753
|
foreach($vars as $k => $v) if (!defined($k)) define($k, $v);
|
754
|
|
755
|
if (!isset($MESSAGE)) include (WB_PATH."/languages/".LANGUAGE.".php");
|
756
|
|
757
|
/**
|
758
|
* The important part ...
|
759
|
* Is there an valid user?
|
760
|
*/
|
761
|
$result = $database->query("SELECT * from ".$table_prefix."users where username='".$_POST['admin_username']."'");
|
762
|
if ( $database->is_error() ) {
|
763
|
set_error ($database->get_error() );
|
764
|
}
|
765
|
if ($result->numRows() == 0) {
|
766
|
/**
|
767
|
* No matches found ... user properly unknown
|
768
|
*/
|
769
|
set_error ("Unkown user. Please use a valid username.");
|
770
|
} else {
|
771
|
|
772
|
$data = $result->fetchRow();
|
773
|
/**
|
774
|
* Does the password match
|
775
|
*/
|
776
|
if ( md5($_POST['admin_password']) != $data['password']) {
|
777
|
set_error ("Password didn't match");
|
778
|
}
|
779
|
}
|
780
|
}
|
781
|
|
782
|
$ThemeUrl = WB_URL.$admin->correct_theme_source('warning.html');
|
783
|
// Setup template object, parse vars to it, then parse it
|
784
|
$ThemePath = realpath(WB_PATH.$admin->correct_theme_source('login.htt'));
|
785
|
|
786
|
// Log the user in and go to Website Baker Administration
|
787
|
$thisApp = new Login(
|
788
|
array(
|
789
|
"MAX_ATTEMPS" => "50",
|
790
|
"WARNING_URL" => $ThemeUrl."/warning.html",
|
791
|
"USERNAME_FIELDNAME" => 'admin_username',
|
792
|
"PASSWORD_FIELDNAME" => 'admin_password',
|
793
|
"REMEMBER_ME_OPTION" => SMART_LOGIN,
|
794
|
"MIN_USERNAME_LEN" => "2",
|
795
|
"MIN_PASSWORD_LEN" => "3",
|
796
|
"MAX_USERNAME_LEN" => "30",
|
797
|
"MAX_PASSWORD_LEN" => "30",
|
798
|
'LOGIN_URL' => ADMIN_URL."/login/index.php",
|
799
|
'DEFAULT_URL' => ADMIN_URL."/start/index.php",
|
800
|
'TEMPLATE_DIR' => $ThemePath,
|
801
|
'TEMPLATE_FILE' => 'login.htt',
|
802
|
'FRONTEND' => false,
|
803
|
'FORGOTTEN_DETAILS_APP' => ADMIN_URL."/login/forgot/index.php",
|
804
|
'USERS_TABLE' => TABLE_PREFIX."users",
|
805
|
'GROUPS_TABLE' => TABLE_PREFIX."groups",
|
806
|
)
|
807
|
);
|