1
|
<?php
|
2
|
/**
|
3
|
*
|
4
|
* @category backend
|
5
|
* @package install
|
6
|
* @author WebsiteBaker Project
|
7
|
* @copyright 2009-2011, Website Baker Org. e.V.
|
8
|
* @link http://www.websitebaker2.org/
|
9
|
* @license http://www.gnu.org/licenses/gpl.html
|
10
|
* @platform WebsiteBaker 2.8.x
|
11
|
* @requirements PHP 5.2.2 and higher
|
12
|
* @version $Id: index.php 1565 2012-01-06 20:53:51Z Luisehahne $
|
13
|
* @filesource $HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/install/index.php $
|
14
|
* @lastmodified $Date: 2012-01-06 21:53:51 +0100 (Fri, 06 Jan 2012) $
|
15
|
*
|
16
|
*/
|
17
|
|
18
|
// Start a session
|
19
|
if(!defined('SESSION_STARTED')) {
|
20
|
session_name('wb_session_id');
|
21
|
session_start();
|
22
|
define('SESSION_STARTED', true);
|
23
|
}
|
24
|
|
25
|
$mod_path = dirname(str_replace('\\', '/', __FILE__));
|
26
|
$doc_root = rtrim(realpath($_SERVER['DOCUMENT_ROOT']),'/');
|
27
|
$mod_name = basename($mod_path);
|
28
|
$wb_path = dirname(dirname(realpath( __FILE__)));
|
29
|
$wb_root = str_replace(realpath($doc_root),'',$wb_path);
|
30
|
|
31
|
// Function to highlight input fields which contain wrong/missing data
|
32
|
function field_error($field_name='') {
|
33
|
if(!defined('SESSION_STARTED') || $field_name == '') return;
|
34
|
if(isset($_SESSION['ERROR_FIELD']) && $_SESSION['ERROR_FIELD'] == $field_name) {
|
35
|
return ' class="wrong"';
|
36
|
}
|
37
|
}
|
38
|
|
39
|
$installFlag = true;
|
40
|
// Check if the page has been reloaded
|
41
|
if(!isset($_GET['sessions_checked']) OR $_GET['sessions_checked'] != 'true') {
|
42
|
// Set session variable
|
43
|
$_SESSION['session_support'] = '<font class="good">Enabled</font>';
|
44
|
// Reload page
|
45
|
header('Location: index.php?sessions_checked=true');
|
46
|
exit(0);
|
47
|
} else {
|
48
|
// Check if session variable has been saved after reload
|
49
|
if(isset($_SESSION['session_support'])) {
|
50
|
$session_support = $_SESSION['session_support'];
|
51
|
} else {
|
52
|
$installFlag = false;
|
53
|
$session_support = '<font class="bad">Disabled</font>';
|
54
|
}
|
55
|
}
|
56
|
// Check if AddDefaultCharset is set
|
57
|
$e_adc=false;
|
58
|
$sapi=php_sapi_name();
|
59
|
if(strpos($sapi, 'apache')!==FALSE || strpos($sapi, 'nsapi')!==FALSE) {
|
60
|
flush();
|
61
|
$apache_rheaders=apache_response_headers();
|
62
|
foreach($apache_rheaders AS $h) {
|
63
|
if(strpos($h, 'html; charset')!==FALSE) {
|
64
|
preg_match('/charset\s*=\s*([a-zA-Z0-9- _]+)/', $h, $match);
|
65
|
$apache_charset=$match[1];
|
66
|
$e_adc=$apache_charset;
|
67
|
}
|
68
|
}
|
69
|
}
|
70
|
|
71
|
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
72
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
73
|
<head>
|
74
|
<title>Website Baker Installation Wizard</title>
|
75
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
76
|
<link href="stylesheet.css" rel="stylesheet" type="text/css" />
|
77
|
<script language="javascript" type="text/javascript">
|
78
|
|
79
|
function confirm_link(message, url) {
|
80
|
if(confirm(message)) location.href = url;
|
81
|
}
|
82
|
function change_os(type) {
|
83
|
if(type == 'linux') {
|
84
|
document.getElementById('operating_system_linux').checked = true;
|
85
|
document.getElementById('operating_system_windows').checked = false;
|
86
|
document.getElementById('file_perms_box').style.display = 'block';
|
87
|
} else if(type == 'windows') {
|
88
|
document.getElementById('operating_system_linux').checked = false;
|
89
|
document.getElementById('operating_system_windows').checked = true;
|
90
|
document.getElementById('file_perms_box').style.display = 'none';
|
91
|
}
|
92
|
}
|
93
|
</script>
|
94
|
</head>
|
95
|
<body>
|
96
|
|
97
|
<table cellpadding="0" cellspacing="0" border="0" width="998px" align="center">
|
98
|
<tr>
|
99
|
<td width="60" valign="top">
|
100
|
<img src="../templates/wb_theme/images/logo.png" alt="Logo" />
|
101
|
</td>
|
102
|
<td width="5"> </td>
|
103
|
<td>
|
104
|
<h1 style="border:none; margin-top:1em;font-size:150%;">Installation Wizard</h1>
|
105
|
</td>
|
106
|
</tr>
|
107
|
</table>
|
108
|
|
109
|
<form name="website_baker_installation_wizard" action="save.php" method="post">
|
110
|
<input type="hidden" name="url" value="" />
|
111
|
<input type="hidden" name="username_fieldname" value="admin_username" />
|
112
|
<input type="hidden" name="password_fieldname" value="admin_password" />
|
113
|
<input type="hidden" name="remember" id="remember" value="true" />
|
114
|
|
115
|
<table cellpadding="0" cellspacing="0" border="0" width="998px" align="center" style="margin-top: 10px;">
|
116
|
<tr>
|
117
|
<td class="content">
|
118
|
|
119
|
<center style="padding: 5px;">
|
120
|
Welcome to the Website Baker Installation Wizard.
|
121
|
</center>
|
122
|
|
123
|
<?php
|
124
|
if(isset($_SESSION['message']) AND $_SESSION['message'] != '') {
|
125
|
?><div style="width: 700px; padding: 10px; margin-bottom: 5px; border: 1px solid #FF0000; background-color: #FFDBDB;"><b>Error:</b> <?php echo $_SESSION['message']; ?></div><?php
|
126
|
}
|
127
|
?>
|
128
|
<table cellpadding="3" cellspacing="0" width="100%" align="center">
|
129
|
<tr>
|
130
|
<td colspan="6"><h1>Step 1</h1>Please check the following requirements are met before continuing...</td>
|
131
|
</tr>
|
132
|
<?php if($session_support != '<font class="good">Enabled</font>') { ?>
|
133
|
<tr>
|
134
|
<td colspan="6" style="font-size: 10px;" class="bad">Please note: PHP Session Support may appear disabled if your browser does not support cookies.</td>
|
135
|
</tr>
|
136
|
<?php } ?>
|
137
|
<tr>
|
138
|
<td width="160" style="color: #666666;">PHP Version > 5.2.1</td>
|
139
|
<td width="60">
|
140
|
<?php
|
141
|
if (version_compare(PHP_VERSION, '5.2.1', '>'))
|
142
|
{
|
143
|
?><font class="good">Yes</font><?php
|
144
|
} else {
|
145
|
$installFlag = false;
|
146
|
?><font class="bad">No</font><?php
|
147
|
}
|
148
|
?>
|
149
|
</td>
|
150
|
<td width="140" style="color: #666666;">PHP Session Support</td>
|
151
|
<td width="105"><?php echo $session_support; ?></td>
|
152
|
<td width="115" style="color: #666666;">PHP Safe Mode</td>
|
153
|
<td>
|
154
|
<?php
|
155
|
if(ini_get('safe_mode')=='' || strpos(strtolower(ini_get('safe_mode')), 'off')!==FALSE || ini_get('safe_mode')==0) {
|
156
|
?><font class="good">Disabled</font><?php
|
157
|
} else {
|
158
|
$installFlag = false;
|
159
|
?><font class="bad">Enabled</font><?php
|
160
|
}
|
161
|
?>
|
162
|
</td>
|
163
|
</tr>
|
164
|
<tr>
|
165
|
<td width="160" style="color: #666666;">Server DefaultCharset</td>
|
166
|
<td width="60">
|
167
|
<?php
|
168
|
$chrval = (($e_adc != '') && (strtolower($e_adc) != 'utf-8') ? true : false);
|
169
|
if($chrval == false) {
|
170
|
?><font class="good">
|
171
|
<?php echo (($e_adc=='') ? 'OK' : $e_adc) ?>
|
172
|
</font>
|
173
|
<?php
|
174
|
} else {
|
175
|
?><font class="bad"><?php echo $e_adc ?></font><?php
|
176
|
}
|
177
|
|
178
|
?>
|
179
|
</td>
|
180
|
<td colspan="4"> </td>
|
181
|
</tr>
|
182
|
<?php if($chrval == true) {
|
183
|
?>
|
184
|
<tr>
|
185
|
<td colspan="6" style="font-size: 10px;" class="bad">
|
186
|
<p class="warning">
|
187
|
<b>Please note:</b> Yor webserver is configured to deliver <b><?php echo $e_adc;?></b> charset only.<br />
|
188
|
To display national special characters (e.g.: ä á) in clear manner, switch off this preset please(or let it do by your hosting provider).<br />
|
189
|
In any case you can choose <b><?php echo $e_adc;?></b> in the settings of WebsiteBaker.<br />
|
190
|
But this solution does not guarranty a correct displaying of the content from all modules!
|
191
|
</p>
|
192
|
</td>
|
193
|
</tr>
|
194
|
<?php } ?>
|
195
|
</table>
|
196
|
<table cellpadding="3" cellspacing="0" width="100%" align="center">
|
197
|
<tr>
|
198
|
<td colspan="8"><h1>Step 2</h1>Please check the following files/folders are writeable before continuing...</td>
|
199
|
</tr>
|
200
|
<tr>
|
201
|
<?php
|
202
|
$config = '<font class="good">Writeable</font>';
|
203
|
$config_content = "<?php\n";
|
204
|
$configFile = '/config.php';
|
205
|
if(!isset($_SESSION['config_rename']) )
|
206
|
{
|
207
|
// cnfig.php or config.php.new
|
208
|
if( (file_exists($wb_path.$configFile)==true))
|
209
|
{
|
210
|
// next operation only if file is writeable
|
211
|
if(is_writeable($wb_path.$configFile))
|
212
|
{
|
213
|
// already installed? it's not empty
|
214
|
if ( filesize($wb_path.$configFile) > 128)
|
215
|
{
|
216
|
$installFlag = false;
|
217
|
$config = '<font class="bad">Not empty!!?</font>';
|
218
|
// try to open and to write
|
219
|
} elseif( !$handle = fopen($wb_path.$configFile, 'w') )
|
220
|
{
|
221
|
$installFlag = false;
|
222
|
$config = '<font class="bad">Not Writeable</font>';
|
223
|
} else {
|
224
|
if (fwrite($handle, $config_content) === FALSE) {
|
225
|
$installFlag = false;
|
226
|
$config = '<font class="bad">Not Writeable</font>';
|
227
|
} else {
|
228
|
$config = '<font class="good">Writeable</font>';
|
229
|
$_SESSION['config_rename'] = true;
|
230
|
}
|
231
|
// Close file
|
232
|
fclose($handle);
|
233
|
}
|
234
|
} else {
|
235
|
$installFlag = false;
|
236
|
$config = '<font class="bad">Not Writeable</font>';
|
237
|
}
|
238
|
// it's config.php.new
|
239
|
} elseif((file_exists($wb_path.'/config.php.new')==true))
|
240
|
{
|
241
|
$configFile = '/config.php.new';
|
242
|
$installFlag = false;
|
243
|
$config = '<font class="bad">Please rename</font>';
|
244
|
} else
|
245
|
{
|
246
|
$installFlag = false;
|
247
|
$config = '<font class="bad">Missing!!?</font>';
|
248
|
}
|
249
|
}
|
250
|
?>
|
251
|
<td width="150px" style="color: #666666;"><?php print $wb_root.$configFile ?></td>
|
252
|
<td width="150px"><?php echo $config ?></td>
|
253
|
<td width="140px" style="color: #666666;"><?php print $wb_root ?>/pages/</td>
|
254
|
<td width="120px"><?php if(is_writable('../pages/')) { echo '<font class="good">Writeable</font>'; } elseif(!file_exists('../pages/')) {$installFlag = false; echo '<font class="bad">Directory Not Found</font>'; } else { echo '<font class="bad">Unwriteable</font>'; } ?></td>
|
255
|
<td width="140px" style="color: #666666;"><?php print $wb_root ?>/media/</td>
|
256
|
<td width="120px"><?php if(is_writable('../media/')) { echo '<font class="good">Writeable</font>'; } elseif(!file_exists('../media/')) {$installFlag = false; echo '<font class="bad">Directory Not Found</font>'; } else { echo '<font class="bad">Unwriteable</font>'; } ?></td>
|
257
|
<td width="140px" style="color: #666666;"><?php print $wb_root ?>/templates/</td>
|
258
|
<td width="120px"><?php if(is_writable('../templates/')) { echo '<font class="good">Writeable</font>'; } elseif(!file_exists('../templates/')) {$installFlag = false; echo '<font class="bad">Directory Not Found</font>'; } else { echo '<font class="bad">Unwriteable</font>'; } ?></td>
|
259
|
</tr>
|
260
|
<tr>
|
261
|
<td style="color: #666666;"><?php print $wb_root ?>/modules/</td>
|
262
|
<td><?php if(is_writable('../modules/')) { echo '<font class="good">Writeable</font>'; } elseif(!file_exists('../modules/')) {$installFlag = false; echo '<font class="bad">Directory Not Found</font>'; } else { echo '<font class="bad">Unwriteable</font>'; } ?></td>
|
263
|
<td style="color: #666666;"><?php print $wb_root ?>/languages/</td>
|
264
|
<td><?php if(is_writable('../languages/')) { echo '<font class="good">Writeable</font>'; } elseif(!file_exists('../languages/')) {$installFlag = false; echo '<font class="bad">Directory Not Found</font>'; } else { echo '<font class="bad">Unwriteable</font>'; } ?></td>
|
265
|
<td style="color: #666666;"><?php print $wb_root ?>/temp/</td>
|
266
|
<td><?php if(is_writable('../temp/')) { echo '<font class="good">Writeable</font>'; } elseif(!file_exists('../temp/')) {$installFlag = false; echo '<font class="bad">Directory Not Found</font>'; } else { echo '<font class="bad">Unwriteable</font>'; } ?></td>
|
267
|
<td> </td>
|
268
|
<td> </td>
|
269
|
</tr>
|
270
|
</table>
|
271
|
<table cellpadding="3" cellspacing="0" width="100%" align="center">
|
272
|
<tr>
|
273
|
<td colspan="2"><h1>Step 3</h1>Please check your path settings, and select a default timezone and a default backend language...</td>
|
274
|
</tr>
|
275
|
<tr>
|
276
|
<td width="125" style="color: #666666;">
|
277
|
Absolute URL:
|
278
|
</td>
|
279
|
<td>
|
280
|
<?php
|
281
|
// Try to guess installation URL
|
282
|
$guessed_url = 'http://'.$_SERVER["SERVER_NAME"].$_SERVER["SCRIPT_NAME"];
|
283
|
$guessed_url = rtrim(dirname($guessed_url), 'install');
|
284
|
?>
|
285
|
<input <?php echo field_error('wb_url');?> type="text" tabindex="1" name="wb_url" style="width: 99%;" value="<?php if(isset($_SESSION['wb_url'])) { echo $_SESSION['wb_url']; } else { echo $guessed_url; } ?>" />
|
286
|
</td>
|
287
|
</tr>
|
288
|
<tr>
|
289
|
<td style="color: #666666;">
|
290
|
Default Timezone:
|
291
|
</td>
|
292
|
<td>
|
293
|
<select <?php echo field_error('default_timezone');?> tabindex="3" name="default_timezone" style="width: 100%;">
|
294
|
<?php
|
295
|
$TIMEZONES['-12'] = 'GMT - 12 Hours';
|
296
|
$TIMEZONES['-11'] = 'GMT -11 Hours';
|
297
|
$TIMEZONES['-10'] = 'GMT -10 Hours';
|
298
|
$TIMEZONES['-9'] = 'GMT -9 Hours';
|
299
|
$TIMEZONES['-8'] = 'GMT -8 Hours';
|
300
|
$TIMEZONES['-7'] = 'GMT -7 Hours';
|
301
|
$TIMEZONES['-6'] = 'GMT -6 Hours';
|
302
|
$TIMEZONES['-5'] = 'GMT -5 Hours';
|
303
|
$TIMEZONES['-4'] = 'GMT -4 Hours';
|
304
|
$TIMEZONES['-3.5'] = 'GMT -3.5 Hours';
|
305
|
$TIMEZONES['-3'] = 'GMT -3 Hours';
|
306
|
$TIMEZONES['-2'] = 'GMT -2 Hours';
|
307
|
$TIMEZONES['-1'] = 'GMT -1 Hour';
|
308
|
$TIMEZONES['0'] = 'GMT';
|
309
|
$TIMEZONES['1'] = 'GMT +1 Hour';
|
310
|
$TIMEZONES['2'] = 'GMT +2 Hours';
|
311
|
$TIMEZONES['3'] = 'GMT +3 Hours';
|
312
|
$TIMEZONES['3.5'] = 'GMT +3.5 Hours';
|
313
|
$TIMEZONES['4'] = 'GMT +4 Hours';
|
314
|
$TIMEZONES['4.5'] = 'GMT +4.5 Hours';
|
315
|
$TIMEZONES['5'] = 'GMT +5 Hours';
|
316
|
$TIMEZONES['5.5'] = 'GMT +5.5 Hours';
|
317
|
$TIMEZONES['6'] = 'GMT +6 Hours';
|
318
|
$TIMEZONES['6.5'] = 'GMT +6.5 Hours';
|
319
|
$TIMEZONES['7'] = 'GMT +7 Hours';
|
320
|
$TIMEZONES['8'] = 'GMT +8 Hours';
|
321
|
$TIMEZONES['9'] = 'GMT +9 Hours';
|
322
|
$TIMEZONES['9.5'] = 'GMT +9.5 Hours';
|
323
|
$TIMEZONES['10'] = 'GMT +10 Hours';
|
324
|
$TIMEZONES['11'] = 'GMT +11 Hours';
|
325
|
$TIMEZONES['12'] = 'GMT +12 Hours';
|
326
|
$TIMEZONES['13'] = 'GMT +13 Hours';
|
327
|
foreach($TIMEZONES AS $hour_offset => $title) {
|
328
|
?>
|
329
|
<option value="<?php echo $hour_offset; ?>"<?php if(isset($_SESSION['default_timezone']) AND $_SESSION['default_timezone'] == $hour_offset) { echo ' selected="selected"'; } elseif(!isset($_SESSION['default_timezone']) AND $hour_offset == 0) { echo ' selected="selected"'; } ?>><?php echo $title; ?></option>
|
330
|
<?php
|
331
|
}
|
332
|
?>
|
333
|
</select>
|
334
|
</td>
|
335
|
</tr>
|
336
|
<tr>
|
337
|
<td style="color: #666666;">
|
338
|
Default Language:
|
339
|
</td>
|
340
|
<td>
|
341
|
<select <?php echo field_error('default_language');?> tabindex="3" name="default_language" style="width: 100%;">
|
342
|
<?php
|
343
|
$DEFAULT_LANGUAGE = array(
|
344
|
'BG'=>'Bulgarian', 'CA'=>'Catalan', 'CS'=>'Čeština', 'DA'=>'Danish', 'DE'=>'Deutsch', 'EN'=>'English',
|
345
|
'ES'=>'Spanish', 'ET'=>'Eesti', 'FI'=>'Suomi', 'FR'=>'Français',
|
346
|
'HR'=>'Hrvatski', 'HU'=>'Magyar','IT'=>'Italiano', 'LV'=>'Latviesu',
|
347
|
'NL'=>'Nederlands', 'NO'=>'Norsk', 'PL'=>'Polski', 'PT'=>'Portuguese (Brazil)', 'RU'=>'Russian', 'SE'=>'Svenska','SK'=>'Slovensky','TR'=>'Turkish'
|
348
|
);
|
349
|
foreach($DEFAULT_LANGUAGE as $lang_id => $lang_title) {
|
350
|
?>
|
351
|
<option value="<?php echo $lang_id; ?>"<?php if(isset($_SESSION['default_language']) AND $_SESSION['default_language'] == $lang_id) { echo ' selected="selected"'; } elseif(!isset($_SESSION['default_language']) AND $lang_id == 'EN') { echo ' selected="selected"'; } ?>><?php echo $lang_title; ?></option>
|
352
|
<?php
|
353
|
}
|
354
|
?>
|
355
|
</select>
|
356
|
</td>
|
357
|
</tr>
|
358
|
</table>
|
359
|
<table cellpadding="5" cellspacing="0" width="100%" align="center">
|
360
|
<tr>
|
361
|
<td colspan="3"><h1>Step 4</h1>Please specify your operating system information below...</td>
|
362
|
</tr>
|
363
|
<tr>
|
364
|
<td width="170">
|
365
|
Server Operating System:
|
366
|
</td>
|
367
|
<td width="180">
|
368
|
<input type="radio" tabindex="4" name="operating_system" id="operating_system_linux" onclick="document.getElementById('file_perms_box').style.display = 'block';" value="linux"<?php if(!isset($_SESSION['operating_system']) OR $_SESSION['operating_system'] == 'linux') { echo ' checked="checked"'; } ?> />
|
369
|
<span style="cursor: pointer;" onclick="javascript: change_os('linux');">Linux/Unix based</span>
|
370
|
<br />
|
371
|
<input type="radio" tabindex="5" name="operating_system" id="operating_system_windows" onclick="document.getElementById('file_perms_box').style.display = 'none';" value="windows"<?php if(isset($_SESSION['operating_system']) AND $_SESSION['operating_system'] == 'windows') { echo ' checked="checked"'; } ?> />
|
372
|
<span style="cursor: pointer;" onclick="javascript: change_os('windows');">Windows</span>
|
373
|
</td>
|
374
|
<td>
|
375
|
<div id="file_perms_box" style="margin: 0; padding: 0; display: <?php if(isset($_SESSION['operating_system']) AND $_SESSION['operating_system'] == 'windows') { echo 'none'; } else { echo 'block'; } ?>;">
|
376
|
<input type="checkbox" tabindex="6" name="world_writeable" id="world_writeable" value="true"<?php if(isset($_SESSION['world_writeable']) AND $_SESSION['world_writeable'] == true) { echo 'checked'; } ?> />
|
377
|
<label for="world_writeable">
|
378
|
World-writeable file permissions (777)
|
379
|
</label>
|
380
|
<br />
|
381
|
<font class="note">(Please note: only recommended for testing environments)</font>
|
382
|
</div>
|
383
|
</td>
|
384
|
</tr>
|
385
|
</table>
|
386
|
<table cellpadding="5" cellspacing="0" width="100%" align="center">
|
387
|
<tr>
|
388
|
<td colspan="5">Please enter your MySQL database server details below...</td>
|
389
|
</tr>
|
390
|
<tr>
|
391
|
<td width="120" style="color: #666666;">Host Name:</td>
|
392
|
<td width="230">
|
393
|
<input <?php echo field_error('database_host');?> type="text" tabindex="7" name="database_host" style="width: 98%;" value="<?php if(isset($_SESSION['database_host'])) { echo $_SESSION['database_host']; } else { echo 'localhost'; } ?>" />
|
394
|
</td>
|
395
|
<td width="7"> </td>
|
396
|
<td width="70" style="color: #666666;">Username:</td>
|
397
|
<td>
|
398
|
<input <?php echo field_error('database_username');?> type="text" tabindex="9" name="database_username" style="width: 98%;" value="<?php if(isset($_SESSION['database_username'])) { echo $_SESSION['database_username']; } else { echo 'root'; } ?>" />
|
399
|
</td>
|
400
|
</tr>
|
401
|
<tr>
|
402
|
<td style="color: #666666;">Database Name:<br />[a-zA-Z0-9_-]</td>
|
403
|
<td>
|
404
|
<input <?php echo field_error('database_name');?> type="text" tabindex="8" name="database_name" style="width: 98%;" value="<?php if(isset($_SESSION['database_name'])) { echo $_SESSION['database_name']; } else { echo 'DatabaseName'; } ?>" />
|
405
|
</td>
|
406
|
<td> </td>
|
407
|
<td style="color: #666666;">Password:</td>
|
408
|
<td>
|
409
|
<input type="password" tabindex="10" name="database_password" style="width: 98%;" value="<?php if(isset($_SESSION['database_password'])) { echo $_SESSION['database_password']; } ?>" />
|
410
|
</td>
|
411
|
</tr>
|
412
|
<tr>
|
413
|
<td style="color: #666666;">Table Prefix:<br />[a-zA-Z0-9_]</td>
|
414
|
<td>
|
415
|
<input <?php echo field_error('table_prefix');?> type="text" tabindex="11" name="table_prefix" style="width: 250px;" value="<?php if(isset($_SESSION['table_prefix'])) { echo $_SESSION['table_prefix']; } else { echo 'wb_'; } ?>" />
|
416
|
</td>
|
417
|
<td> </td>
|
418
|
<td colspan="2">
|
419
|
<input type="checkbox" tabindex="12" name="install_tables" id="install_tables" value="true"<?php if(!isset($_SESSION['install_tables'])) { echo ' checked="checked"'; } elseif($_SESSION['install_tables'] == 'true') { echo ' checked="checked"'; } ?> />
|
420
|
<label for="install_tables" style="color: #666666;">Install Tables</label>
|
421
|
<br />
|
422
|
<span style="font-size: 10px; color: #666666;">(Please note: May remove existing tables and data)</span>
|
423
|
</td>
|
424
|
</tr>
|
425
|
<tr>
|
426
|
<td colspan="5"><h1>Step 5</h1>Please enter your website title below...</td>
|
427
|
</tr>
|
428
|
<tr>
|
429
|
<td style="color: #666666;" colspan="1">Website Title:</td>
|
430
|
<td colspan="4">
|
431
|
<input <?php echo field_error('website_title');?> type="text" tabindex="13" name="website_title" style="width: 99%;" value="<?php if(isset($_SESSION['website_title'])) { echo $_SESSION['website_title']; } else { echo 'Enter your website title'; } ?>" />
|
432
|
</td>
|
433
|
</tr>
|
434
|
<tr>
|
435
|
<td colspan="5"><h1>Step 6</h1>Please enter your Administrator account details below...</td>
|
436
|
</tr>
|
437
|
<tr>
|
438
|
<td style="color: #666666;">Username:</td>
|
439
|
<td>
|
440
|
<input <?php echo field_error('admin_username');?> type="text" tabindex="14" name="admin_username" style="width: 98%;" value="<?php if(isset($_SESSION['admin_username'])) { echo $_SESSION['admin_username']; } else { echo 'admin'; } ?>" />
|
441
|
</td>
|
442
|
<td> </td>
|
443
|
<td style="color: #666666;">Password:</td>
|
444
|
<td>
|
445
|
<input <?php echo field_error('admin_password');?> type="password" tabindex="16" name="admin_password" style="width: 98%;" value="" />
|
446
|
</td>
|
447
|
</tr>
|
448
|
<tr>
|
449
|
<td style="color: #666666;">Email:</td>
|
450
|
<td>
|
451
|
<input <?php echo field_error('admin_email');?> type="text" tabindex="15" name="admin_email" style="width: 98%;" value="<?php if(isset($_SESSION['admin_email'])) { echo $_SESSION['admin_email']; } ?>" />
|
452
|
</td>
|
453
|
<td> </td>
|
454
|
<td style="color: #666666;">Re-Password:</td>
|
455
|
<td>
|
456
|
<input <?php echo field_error('admin_repassword');?> type="password" tabindex="17" name="admin_repassword" style="width: 98%;" value="" />
|
457
|
</td>
|
458
|
</tr>
|
459
|
<tr>
|
460
|
<td colspan="5" style="padding: 10px; padding-bottom: 0;"><h1 style="font-size: 0px;"> </h1></td>
|
461
|
</tr>
|
462
|
<tr>
|
463
|
<td colspan="4">
|
464
|
<table cellpadding="0" cellspacing="0" width="100%" border="0">
|
465
|
<tr valign="top">
|
466
|
<td>Please note: </td>
|
467
|
<td>
|
468
|
Website Baker is released under the
|
469
|
<a href="http://www.gnu.org/licenses/gpl.html" target="_blank" tabindex="19">GNU General Public License</a>
|
470
|
<br />
|
471
|
By clicking install, you are accepting the license.
|
472
|
</td>
|
473
|
</tr>
|
474
|
</table>
|
475
|
</td>
|
476
|
<td colspan="1" align="right">
|
477
|
<?php if($installFlag == true) { ?>
|
478
|
<input type="submit" tabindex="20" name="submit" value="Install WebsiteBaker" />
|
479
|
<?php } else { ?>
|
480
|
<input type="button" tabindex="20" name="submit" value="Check your Settings in Step1 or Step2" class="submit" />
|
481
|
<?php } ?>
|
482
|
</td>
|
483
|
</tr>
|
484
|
</table>
|
485
|
</td>
|
486
|
</tr>
|
487
|
</table>
|
488
|
|
489
|
</form>
|
490
|
|
491
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0px 10px 0px;">
|
492
|
<tr>
|
493
|
<td align="center" style="font-size: 10px;">
|
494
|
<!-- Please note: the below reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
|
495
|
<a href="http://www.websitebaker.org/" style="color: #000000;" target="_blank">Website Baker</a>
|
496
|
is released under the
|
497
|
<a href="http://www.gnu.org/licenses/gpl.html" style="color: #000000;" target="_blank">GNU General Public License</a>
|
498
|
<!-- Please note: the above reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
|
499
|
</td>
|
500
|
</tr>
|
501
|
</table>
|
502
|
|
503
|
</body>
|
504
|
</html>
|