Revision 1423
Added by DarkViper almost 14 years ago
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 |
." ('mediasettings', '')"; |
|
494 |
$database->query($settings_rows); |
|
495 |
|
|
496 |
// Users table |
|
497 |
$users = 'CREATE TABLE `'.TABLE_PREFIX.'users` ( `user_id` INT NOT NULL auto_increment,' |
|
498 |
. ' `group_id` INT NOT NULL DEFAULT \'0\',' |
|
499 |
. ' `groups_id` VARCHAR( 255 ) NOT NULL DEFAULT \'0\',' |
|
500 |
. ' `active` INT NOT NULL DEFAULT \'0\',' |
|
501 |
. ' `username` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,' |
|
502 |
. ' `password` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,' |
|
503 |
. ' `remember_key` VARCHAR( 255 ) NOT NULL DEFAULT \'\',' |
|
504 |
. ' `last_reset` INT NOT NULL DEFAULT \'0\',' |
|
505 |
. ' `display_name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,' |
|
506 |
. ' `email` TEXT NOT NULL ,' |
|
507 |
. ' `timezone` INT NOT NULL DEFAULT \'0\',' |
|
508 |
. ' `date_format` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,' |
|
509 |
. ' `time_format` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,' |
|
510 |
. ' `language` VARCHAR( 5 ) NOT NULL DEFAULT \'' .$default_language .'\' ,' |
|
511 |
. ' `home_folder` TEXT NOT NULL ,' |
|
512 |
. ' `login_when` INT NOT NULL DEFAULT \'0\',' |
|
513 |
. ' `login_ip` VARCHAR( 15 ) NOT NULL DEFAULT \'\' ,' |
|
514 |
. ' PRIMARY KEY ( `user_id` ) ' |
|
515 |
. ' )'; |
|
516 |
$database->query($users); |
|
517 |
|
|
518 |
// Groups table |
|
519 |
$groups = 'CREATE TABLE `'.TABLE_PREFIX.'groups` ( `group_id` INT NOT NULL auto_increment,' |
|
520 |
. ' `name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,' |
|
521 |
. ' `system_permissions` TEXT NOT NULL ,' |
|
522 |
. ' `module_permissions` TEXT NOT NULL ,' |
|
523 |
. ' `template_permissions` TEXT NOT NULL ,' |
|
524 |
. ' PRIMARY KEY ( `group_id` ) ' |
|
525 |
. ' )'; |
|
526 |
$database->query($groups); |
|
527 |
|
|
528 |
// Search settings table |
|
529 |
$search = 'CREATE TABLE `'.TABLE_PREFIX.'search` ( `search_id` INT NOT NULL auto_increment,' |
|
530 |
. ' `name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,' |
|
531 |
. ' `value` TEXT NOT NULL ,' |
|
532 |
. ' `extra` TEXT NOT NULL ,' |
|
533 |
. ' PRIMARY KEY ( `search_id` ) ' |
|
534 |
. ' )'; |
|
535 |
$database->query($search); |
|
536 |
|
|
537 |
// Addons table |
|
538 |
$addons = 'CREATE TABLE `'.TABLE_PREFIX.'addons` ( ' |
|
539 |
.'`addon_id` INT NOT NULL auto_increment ,' |
|
540 |
.'`type` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,' |
|
541 |
.'`directory` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,' |
|
542 |
.'`name` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,' |
|
543 |
.'`description` TEXT NOT NULL ,' |
|
544 |
.'`function` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,' |
|
545 |
.'`version` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,' |
|
546 |
.'`platform` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,' |
|
547 |
.'`author` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,' |
|
548 |
.'`license` VARCHAR( 255 ) NOT NULL DEFAULT \'\' ,' |
|
549 |
.' PRIMARY KEY ( `addon_id` ) ' |
|
550 |
.' )'; |
|
551 |
$database->query($addons); |
|
552 |
|
|
553 |
// Insert default data |
|
554 |
|
|
555 |
// Admin group |
|
556 |
$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'; |
|
557 |
$insert_admin_group = "INSERT INTO `".TABLE_PREFIX."groups` VALUES ('1', 'Administrators', '$full_system_permissions', '', '')"; |
|
558 |
$database->query($insert_admin_group); |
|
559 |
// Admin user |
|
560 |
$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')"; |
|
561 |
$database->query($insert_admin_user); |
|
562 |
|
|
563 |
// Search header |
|
564 |
$search_header = addslashes(' |
|
565 |
<h1>[TEXT_SEARCH]</h1> |
|
566 |
|
|
567 |
<form name="searchpage" action="[WB_URL]/search/index.php" method="get"> |
|
568 |
<table cellpadding="3" cellspacing="0" border="0" width="500"> |
|
569 |
<tr> |
|
570 |
<td> |
|
571 |
<input type="hidden" name="search_path" value="[SEARCH_PATH]" /> |
|
572 |
<input type="text" name="string" value="[SEARCH_STRING]" style="width: 100%;" /> |
|
573 |
</td> |
|
574 |
<td width="150"> |
|
575 |
<input type="submit" value="[TEXT_SEARCH]" style="width: 100%;" /> |
|
576 |
</td> |
|
577 |
</tr> |
|
578 |
<tr> |
|
579 |
<td colspan="2"> |
|
580 |
<input type="radio" name="match" id="match_all" value="all"[ALL_CHECKED] /> |
|
581 |
<label for="match_all">[TEXT_ALL_WORDS]</label> |
|
582 |
<input type="radio" name="match" id="match_any" value="any"[ANY_CHECKED] /> |
|
583 |
<label for="match_any">[TEXT_ANY_WORDS]</label> |
|
584 |
<input type="radio" name="match" id="match_exact" value="exact"[EXACT_CHECKED] /> |
|
585 |
<label for="match_exact">[TEXT_EXACT_MATCH]</label> |
|
586 |
</td> |
|
587 |
</tr> |
|
588 |
</table> |
|
589 |
|
|
590 |
</form> |
|
591 |
|
|
592 |
<hr /> |
|
593 |
'); |
|
594 |
$insert_search_header = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'header', '$search_header', '')"; |
|
595 |
$database->query($insert_search_header); |
|
596 |
// Search footer |
|
597 |
$search_footer = addslashes(''); |
|
598 |
$insert_search_footer = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'footer', '$search_footer', '')"; |
|
599 |
$database->query($insert_search_footer); |
|
600 |
// Search results header |
|
601 |
$search_results_header = addslashes(''. |
|
602 |
'[TEXT_RESULTS_FOR] \'<b>[SEARCH_STRING]</b>\': |
|
603 |
<table cellpadding="2" cellspacing="0" border="0" width="100%" style="padding-top: 10px;">'); |
|
604 |
$insert_search_results_header = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'results_header', '$search_results_header', '')"; |
|
605 |
$database->query($insert_search_results_header); |
|
606 |
// Search results loop |
|
607 |
$search_results_loop = addslashes(''. |
|
608 |
'<tr style="background-color: #F0F0F0;"> |
|
609 |
<td><a href="[LINK]">[TITLE]</a></td> |
|
610 |
<td align="right">[TEXT_LAST_UPDATED_BY] [DISPLAY_NAME] ([USERNAME]) [TEXT_ON] [DATE]</td> |
|
611 |
</tr> |
|
612 |
<tr><td colspan="2" style="text-align: justify; padding-bottom: 5px;">[DESCRIPTION]</td></tr> |
|
613 |
<tr><td colspan="2" style="text-align: justify; padding-bottom: 10px;">[EXCERPT]</td></tr>'); |
|
614 |
|
|
615 |
$insert_search_results_loop = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'results_loop', '$search_results_loop', '')"; |
|
616 |
$database->query($insert_search_results_loop); |
|
617 |
// Search results footer |
|
618 |
$search_results_footer = addslashes("</table>"); |
|
619 |
$insert_search_results_footer = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'results_footer', '$search_results_footer', '')"; |
|
620 |
$database->query($insert_search_results_footer); |
|
621 |
// Search no results |
|
622 |
$search_no_results = addslashes('<tr><td><p>[TEXT_NO_RESULTS]</p></td></tr>'); |
|
623 |
$insert_search_no_results = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'no_results', '$search_no_results', '')"; |
|
624 |
$database->query($insert_search_no_results); |
|
625 |
// Search module-order |
|
626 |
$search_module_order = addslashes('faqbaker,manual,wysiwyg'); |
|
627 |
$insert_search_module_order = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'module_order', '$search_module_order', '')"; |
|
628 |
$database->query($insert_search_module_order); |
|
629 |
// Search max lines of excerpt |
|
630 |
$search_max_excerpt = addslashes('15'); |
|
631 |
$insert_search_max_excerpt = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'max_excerpt', '$search_max_excerpt', '')"; |
|
632 |
$database->query($insert_search_max_excerpt); |
|
633 |
// max time to search per module |
|
634 |
$search_time_limit = addslashes('0'); |
|
635 |
$insert_search_time_limit = "INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'time_limit', '$search_time_limit', '')"; |
|
636 |
$database->query($insert_search_time_limit); |
|
637 |
// some config-elements |
|
638 |
$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_enable_old_search', 'true', '')"); |
|
639 |
$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_search_keywords', 'true', '')"); |
|
640 |
$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_search_description', 'true', '')"); |
|
641 |
$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_show_description', 'true', '')"); |
|
642 |
$database->query("INSERT INTO `".TABLE_PREFIX."search` VALUES ('', 'cfg_enable_flush', 'false', '')"); |
|
643 |
// Search template |
|
644 |
$database->query("INSERT INTO `".TABLE_PREFIX."search` (name) VALUES ('template')"); |
|
645 |
|
|
646 |
require_once(WB_PATH.'/framework/initialize.php'); |
|
647 |
|
|
648 |
// Include the PclZip class file (thanks to |
|
649 |
require_once(WB_PATH.'/include/pclzip/pclzip.lib.php'); |
|
650 |
|
|
651 |
// Install add-ons |
|
652 |
if(file_exists(WB_PATH.'/install/modules')) { |
|
653 |
// Unpack pre-packaged modules |
|
654 |
|
|
655 |
} |
|
656 |
if(file_exists(WB_PATH.'/install/templates')) { |
|
657 |
// Unpack pre-packaged templates |
|
658 |
|
|
659 |
} |
|
660 |
if(file_exists(WB_PATH.'/install/languages')) { |
|
661 |
// Unpack pre-packaged languages |
|
662 |
|
|
663 |
} |
|
664 |
|
|
665 |
$admin=new admin_dummy(); |
|
666 |
// Load addons into DB |
|
667 |
$dirs['modules'] = WB_PATH.'/modules/'; |
|
668 |
$dirs['templates'] = WB_PATH.'/templates/'; |
|
669 |
$dirs['languages'] = WB_PATH.'/languages/'; |
|
670 |
foreach($dirs AS $type => $dir) { |
|
671 |
if($handle = opendir($dir)) { |
|
672 |
while(false !== ($file = readdir($handle))) { |
|
673 |
if($file != '' AND substr($file, 0, 1) != '.' AND $file != 'admin.php' AND $file != 'index.php') { |
|
674 |
// Get addon type |
|
675 |
if($type == 'modules') { |
|
676 |
load_module($dir.'/'.$file, true); |
|
677 |
// Pretty ugly hack to let modules run $admin->set_error |
|
678 |
// See dummy class definition admin_dummy above |
|
679 |
if ($admin->error!='') { |
|
680 |
set_error($admin->error); |
|
681 |
} |
|
682 |
} elseif($type == 'templates') { |
|
683 |
load_template($dir.'/'.$file); |
|
684 |
} elseif($type == 'languages') { |
|
685 |
load_language($dir.'/'.$file); |
|
686 |
} |
|
687 |
} |
|
688 |
} |
|
689 |
closedir($handle); |
|
690 |
} |
|
691 |
} |
|
692 |
|
|
693 |
// Check if there was a database error |
|
694 |
if($database->is_error()) { |
|
695 |
set_error($database->get_error()); |
|
696 |
} |
|
697 |
|
|
698 |
// end of if install_tables |
|
699 |
} else { |
|
700 |
/** |
|
701 |
* DB - Exists |
|
702 |
* Tables also? |
|
703 |
* |
|
704 |
*/ |
|
705 |
$requested_tables = array("pages","sections","settings","users","groups","search","addons"); |
|
706 |
for($i=0;$i<count($requested_tables);$i++) $requested_tables[$i] = $table_prefix.$requested_tables[$i]; |
|
707 |
|
|
708 |
$result = mysql_list_tables( DB_NAME ); |
|
709 |
$all_tables = array(); |
|
710 |
for($i=0; $i < mysql_num_rows($result); $i++) $all_tables[] = mysql_table_name($result, $i); |
|
711 |
|
|
712 |
$missing_tables = array(); |
|
713 |
foreach($requested_tables as $temp_table) { |
|
714 |
if (!in_array($temp_table, $all_tables)) { |
|
715 |
$missing_tables[] = $temp_table; |
|
716 |
} |
|
717 |
} |
|
718 |
|
|
719 |
/** |
|
720 |
* If one or more needed tables are missing, so |
|
721 |
* we can't go on and have to display an error |
|
722 |
*/ |
|
723 |
if ( count($missing_tables) > 0 ) { |
|
724 |
$error_message = "One or more tables are missing in the selected database <b><font color='#990000'>".DB_NAME."</font></b>.<br />"; |
|
725 |
$error_message .= "Please install the missing tables or choose 'install tables' as recommend.<br />"; |
|
726 |
$error_message .= "Missing tables are: <b>".implode(", ", $missing_tables)."</b>"; |
|
727 |
|
|
728 |
set_error( $error_message ); |
|
729 |
} |
|
730 |
|
|
731 |
/** |
|
732 |
* Try to get some default settings ... |
|
733 |
*/ |
|
734 |
$vars = array( |
|
735 |
'DEFAULT_THEME' => "wb_theme", |
|
736 |
'THEME_URL' => WB_URL."/templates/wb_theme", |
|
737 |
'THEME_PATH' => WB_PATH."/templates/wb_theme", |
|
738 |
'LANGUAGE' => $_POST['default_language'], |
|
739 |
'SERVER_EMAIL' => "admin@yourdomain.com", |
|
740 |
'SMART_LOGIN' => false |
|
741 |
); |
|
742 |
foreach($vars as $k => $v) if (!defined($k)) define($k, $v); |
|
743 |
|
|
744 |
if (!isset($MESSAGE)) include (WB_PATH."/languages/".LANGUAGE.".php"); |
|
745 |
|
|
746 |
/** |
|
747 |
* The important part ... |
|
748 |
* Is there an valid user? |
|
749 |
*/ |
|
750 |
$result = $database->query("SELECT * from ".$table_prefix."users where username='".$_POST['admin_username']."'"); |
|
751 |
if ( $database->is_error() ) { |
|
752 |
set_error ($database->get_error() ); |
|
753 |
} |
|
754 |
if ($result->numRows() == 0) { |
|
755 |
/** |
|
756 |
* No matches found ... user properly unknown |
|
757 |
*/ |
|
758 |
set_error ("Unkown user. Please use a valid username."); |
|
759 |
} else { |
|
760 |
|
|
761 |
$data = $result->fetchRow(); |
|
762 |
/** |
|
763 |
* Does the password match |
|
764 |
*/ |
|
765 |
if ( md5($_POST['admin_password']) != $data['password']) { |
|
766 |
set_error ("Password didn't match"); |
|
767 |
} |
|
768 |
} |
|
769 |
} |
|
770 |
// Log the user in and go to Website Baker Administration |
|
771 |
$thisApp = new Login( |
|
772 |
array( |
|
773 |
"MAX_ATTEMPS" => "50", |
|
774 |
"WARNING_URL" => ADMIN_URL."/login/warning.html", |
|
775 |
"USERNAME_FIELDNAME" => 'admin_username', |
|
776 |
"PASSWORD_FIELDNAME" => 'admin_password', |
|
777 |
"REMEMBER_ME_OPTION" => SMART_LOGIN, |
|
778 |
"MIN_USERNAME_LEN" => "2", |
|
779 |
"MIN_PASSWORD_LEN" => "2", |
|
780 |
"MAX_USERNAME_LEN" => "30", |
|
781 |
"MAX_PASSWORD_LEN" => "30", |
|
782 |
'LOGIN_URL' => ADMIN_URL."/login/index.php", |
|
783 |
'DEFAULT_URL' => ADMIN_URL."/start/index.php", |
|
784 |
'TEMPLATE_DIR' => ADMIN_PATH."/login", |
|
785 |
'TEMPLATE_FILE' => "template.html", |
|
786 |
'FRONTEND' => false, |
|
787 |
'FORGOTTEN_DETAILS_APP' => ADMIN_URL."/login/forgot/index.php", |
|
788 |
'USERS_TABLE' => TABLE_PREFIX."users", |
|
789 |
'GROUPS_TABLE' => TABLE_PREFIX."groups", |
|
790 |
) |
|
791 |
); |
|
792 |
?> |
|
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 |
* |
Also available in: Unified diff
add FINGERPRINT_WITH_IP_OCTETS to table settings