Project

General

Profile

1 1349 Luisehahne
<?php
2
/**
3 1884 Luisehahne
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
4 1349 Luisehahne
 *
5 1884 Luisehahne
 * This program is free software: you can redistribute it and/or modify
6
 * it under the terms of the GNU General Public License as published by
7
 * the Free Software Foundation, either version 3 of the License, or
8
 * (at your option) any later version.
9 1349 Luisehahne
 *
10 1884 Luisehahne
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 1349 Luisehahne
 */
18
19 1884 Luisehahne
/**
20
 * index.php
21
 *
22
 * @category     Core
23
 * @package      Core_Environment
24
 * @subpackage   Installer
25
 * @author       Dietmar Wöllbrink <dietmar.woellbrink@websitebaker.org>
26
 * @copyright    Werner v.d.Decken <wkl@isteam.de>
27
 * @license      http://www.gnu.org/licenses/gpl.html   GPL License
28
 * @version      0.0.2
29
 * @revision     $Revision$
30
 * @link         $HeadURL$
31
 * @lastmodified $Date$
32
 * @since        File available since 2012-04-01
33
 * @description  xyz
34
 */
35
36 1349 Luisehahne
// Start a session
37
if(!defined('SESSION_STARTED')) {
38
	session_name('wb_session_id');
39
	session_start();
40
	define('SESSION_STARTED', true);
41
}
42
43 1884 Luisehahne
$doc_root = str_replace('\\','/',rtrim(realpath($_SERVER['DOCUMENT_ROOT']),'/').'/');
44
$wb_path = str_replace('\\','/',rtrim(dirname(dirname(realpath( __FILE__))),'/')).'/';
45
$wb_root = str_replace(($doc_root),'',$wb_path);
46 1530 Luisehahne
47 1349 Luisehahne
// Function to highlight input fields which contain wrong/missing data
48
function field_error($field_name='') {
49
	if(!defined('SESSION_STARTED') || $field_name == '') return;
50
	if(isset($_SESSION['ERROR_FIELD']) && $_SESSION['ERROR_FIELD'] == $field_name) {
51
		return ' class="wrong"';
52
	}
53
}
54
55 1529 Luisehahne
$installFlag = true;
56 1349 Luisehahne
// Check if the page has been reloaded
57
if(!isset($_GET['sessions_checked']) OR $_GET['sessions_checked'] != 'true') {
58
	// Set session variable
59
	$_SESSION['session_support'] = '<font class="good">Enabled</font>';
60
	// Reload page
61
	header('Location: index.php?sessions_checked=true');
62
	exit(0);
63
} else {
64
	// Check if session variable has been saved after reload
65
	if(isset($_SESSION['session_support'])) {
66
		$session_support = $_SESSION['session_support'];
67 1529 Luisehahne
	} else {
68
		$installFlag = false;
69 1349 Luisehahne
		$session_support = '<font class="bad">Disabled</font>';
70
	}
71
}
72
// Check if AddDefaultCharset is set
73
$e_adc=false;
74
$sapi=php_sapi_name();
75
if(strpos($sapi, 'apache')!==FALSE || strpos($sapi, 'nsapi')!==FALSE) {
76
	flush();
77
	$apache_rheaders=apache_response_headers();
78
	foreach($apache_rheaders AS $h) {
79
		if(strpos($h, 'html; charset')!==FALSE) {
80
			preg_match('/charset\s*=\s*([a-zA-Z0-9- _]+)/', $h, $match);
81
			$apache_charset=$match[1];
82
			$e_adc=$apache_charset;
83
		}
84
	}
85
}
86
87 1884 Luisehahne
//$sapi_type = php_sapi_name();
88 1737 Luisehahne
if(!isset($_SESSION['operating_system'])) {
89 1884 Luisehahne
	$operating_system = ((strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? 'windows' : 'linux');
90 1737 Luisehahne
} else {
91 1884 Luisehahne
	$operating_system = $_SESSION['operating_system'];
92 1737 Luisehahne
}
93 1884 Luisehahne
94
function checkConfigFile ($sWbPath,$sType ) {
95
	$config = '';
96
	$sConfigContent	= "<?php\n";
97
	$sConfigFile = $sWbPath.$sType.'.php';
98
99
// config.php or config.php.new
100
		if( (file_exists($sConfigFile)==true))
101
		{
102
// next operation only if file is writeable
103
			if(is_writeable($sConfigFile))
104
			{
105
// already installed? it's not empty
106 1885 Luisehahne
				if ( filesize($sConfigFile) > 100)
107 1884 Luisehahne
				{
108
					$config = '<font class="bad">Already installed? Check!</font>';
109
// try to open and to write
110
				} elseif( !$handle = fopen($sConfigFile, 'w') )
111
				{
112
					$config = '<font class="bad">Not Writeable</font>';
113
				} else {
114
					if (fwrite($handle, $sConfigContent) === FALSE) {
115
						$config = '<font class="bad">Not Writeable</font>';
116
					} else {
117
						$config = '';
118
						$_SESSION[$sType.'_rename'] = true;
119
					}
120
					// Close file
121
					fclose($handle);
122
					}
123
			} else {
124
				$config = '<font class="bad">Not Writeable</font>';
125
			}
126
// it's config.php.new
127
		} elseif((file_exists($sConfigFile.'.new')==true))
128
		{
129
			$config = '<font class="bad">Please rename to '.$sType.'.php</font>';
130
		} else {
131
			$config = '<font class="bad">Missing!!?</font>';
132
		}
133
	return $config;
134
}
135
136
137 1529 Luisehahne
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
138 1349 Luisehahne
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
139
<head>
140 1609 Luisehahne
<title>WebsiteBaker Installation Wizard</title>
141 1349 Luisehahne
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
142
<link href="stylesheet.css" rel="stylesheet" type="text/css" />
143 1737 Luisehahne
<script type="text/javascript">
144 1349 Luisehahne
145
function confirm_link(message, url) {
146
	if(confirm(message)) location.href = url;
147
}
148
function change_os(type) {
149
	if(type == 'linux') {
150
		document.getElementById('operating_system_linux').checked = true;
151
		document.getElementById('operating_system_windows').checked = false;
152 1608 Luisehahne
		document.getElementById('file_perms_box').style.display = 'none';
153 1349 Luisehahne
	} else if(type == 'windows') {
154
		document.getElementById('operating_system_linux').checked = false;
155
		document.getElementById('operating_system_windows').checked = true;
156
		document.getElementById('file_perms_box').style.display = 'none';
157
	}
158
}
159
</script>
160
</head>
161
<body>
162 1608 Luisehahne
<div class="body">
163
<table summary="" cellpadding="0" cellspacing="0">
164
<tr style="background: #a9c9ea;">
165
	<td valign="top">
166 1349 Luisehahne
		<img src="../templates/wb_theme/images/logo.png" alt="Logo" />
167
	</td>
168 1529 Luisehahne
	<td>
169
		<h1 style="border:none; margin-top:1em;font-size:150%;">Installation Wizard</h1>
170 1349 Luisehahne
	</td>
171
</tr>
172
</table>
173
174
<form name="website_baker_installation_wizard" action="save.php" method="post">
175
<input type="hidden" name="url" value="" />
176
<input type="hidden" name="username_fieldname" value="admin_username" />
177
<input type="hidden" name="password_fieldname" value="admin_password" />
178
<input type="hidden" name="remember" id="remember" value="true" />
179
180 1608 Luisehahne
		<div style="padding: 5px; text-align: center; font-weight: bold;">
181 1609 Luisehahne
			Welcome to the WebsiteBaker Installation Wizard.
182 1608 Luisehahne
		</div>
183 1349 Luisehahne
		<?php
184
		if(isset($_SESSION['message']) AND $_SESSION['message'] != '') {
185 1608 Luisehahne
			?><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
186 1349 Luisehahne
		}
187
		?>
188 1608 Luisehahne
		<table summary="" cellpadding="0" cellspacing="0" border="0">
189 1349 Luisehahne
		<tr>
190 1608 Luisehahne
			<td colspan="6" class="step-row"><h1 class="step-row">Step 1</h1>&nbsp;Please check the following requirements are met before continuing...</td>
191 1349 Luisehahne
		</tr>
192
		<?php if($session_support != '<font class="good">Enabled</font>') { ?>
193
		<tr>
194 1608 Luisehahne
			<td colspan="6" class="error">Please note: PHP Session Support may appear disabled if your browser does not support cookies.</td>
195 1349 Luisehahne
		</tr>
196
		<?php } ?>
197
		<tr>
198 1608 Luisehahne
			<td style="color: #666666;">PHP Version > 5.2.1</td>
199
			<td>
200 1349 Luisehahne
				<?php
201 1544 Luisehahne
			   if (version_compare(PHP_VERSION, '5.2.1', '>'))
202 1349 Luisehahne
			   {
203
					?><font class="good">Yes</font><?php
204
				} else {
205 1529 Luisehahne
					$installFlag = false;
206 1349 Luisehahne
					?><font class="bad">No</font><?php
207
				}
208
				?>
209
			</td>
210 1608 Luisehahne
			<td style="color: #666666;">PHP Session Support</td>
211
			<td><?php echo $session_support; ?></td>
212 1349 Luisehahne
		</tr>
213 1565 Luisehahne
	<tr>
214 1884 Luisehahne
		<td style="color: #666666;">PHP Interface</td>
215
			<td colspan="2">
216
				<?php
217
						?><font class="good">
218
						<?php echo $sapi ?>
219
						</font>
220
			</td>
221
		</tr>
222
223 1608 Luisehahne
		<td style="color: #666666;">Server DefaultCharset</td>
224
			<td>
225 1349 Luisehahne
				<?php
226 1565 Luisehahne
					$chrval = (($e_adc != '') && (strtolower($e_adc) != 'utf-8') ? true : false);
227
					if($chrval == false) {
228
						?><font class="good">
229
						<?php echo (($e_adc=='') ? 'OK' : $e_adc) ?>
230
						</font>
231
						<?php
232 1349 Luisehahne
					} else {
233 1565 Luisehahne
						?><font class="bad"><?php echo $e_adc ?></font><?php
234 1349 Luisehahne
					}
235 1565 Luisehahne
236 1349 Luisehahne
				?>
237
			</td>
238 1608 Luisehahne
			<td style="color: #666666;">PHP Safe Mode</td>
239
			<td>
240
				<?php
241
				if(ini_get('safe_mode')=='' || strpos(strtolower(ini_get('safe_mode')), 'off')!==FALSE || ini_get('safe_mode')==0) {
242
					?><font class="good">Disabled</font><?php
243
				} else {
244
					$installFlag = false;
245
					?><font class="bad">Enabled</font><?php
246
				}
247
				?>
248
			</td>
249 1349 Luisehahne
		</tr>
250 1565 Luisehahne
		<?php if($chrval == true) {
251 1529 Luisehahne
		?>
252 1349 Luisehahne
		<tr>
253 1565 Luisehahne
			<td colspan="6" style="font-size: 10px;" class="bad">
254
<p class="warning">
255
<b>Please note:</b> Yor webserver is configured to deliver <b><?php echo $e_adc;?></b> charset only.<br />
256
To display national special characters (e.g.: &auml; &aacute;) in clear manner, switch off this preset please(or let it do by your hosting provider).<br />
257
In any case you can choose <b><?php echo $e_adc;?></b> in the settings of WebsiteBaker.<br />
258
But this solution does not guarranty a correct displaying of the content from all modules!
259
</p>
260
</td>
261 1608 Luisehahne
</tr>
262
<?php } ?>
263 1884 Luisehahne
<tr>
264
	<td style="line-height: 0.4em;" colspan="4">&nbsp;</td>
265
</tr>
266 1608 Luisehahne
</table>
267
<table summary="" cellpadding="3" cellspacing="0">
268
<tr>
269 1654 Luisehahne
	<td colspan="6" class="step-row"><h1 class="step-row">Step 2</h1>&nbsp;Please check the following files/folders are writeable before continuing...</td>
270 1608 Luisehahne
</tr>
271 1529 Luisehahne
<?php
272 1884 Luisehahne
	$sTmp = '';
273
	$config = '';
274
	$sConfigFile = 'config.php.new';
275
	if( ($sTmp = checkConfigFile($wb_path,'config')) === '' ) {
276
		$config = '<font class="good">Writeable</font>';
277
	} else {
278
		$config = $sTmp;
279 1529 Luisehahne
	}
280 1885 Luisehahne
	$sConfigFile = preg_match('/(?:rename)/i',$config) ? $sConfigFile : 'config.php';
281 1884 Luisehahne
	$installFlag = $installFlag && ($sTmp == '');
282 1529 Luisehahne
?>
283 1608 Luisehahne
		<tr>
284 1884 Luisehahne
			<td colspan="2" style="color: #666666;"><?php print $wb_root.$sConfigFile ?></td>
285 1802 Luisehahne
			<td colspan="2"><?php echo $config ?></td>
286
		</tr>
287 1884 Luisehahne
<?php
288
	$sTmp = '';
289
	$config = '';
290
	$sSetupIniFile = 'setup.ini.php.new';
291
	if( ($sTmp = checkConfigFile($wb_path,'setup.ini')) === '' ) {
292
		$config = '<font class="good">Writeable</font>';
293
	} else {
294
		$config = $sTmp;
295
	}
296
	$sSetupIniFile = preg_match('/(?:rename)/i',$config) ? $sSetupIniFile : 'setup.ini.php';
297
	$installFlag = $installFlag && ($sTmp == '');
298
?>
299 1802 Luisehahne
		<tr>
300 1884 Luisehahne
			<td colspan="2" style="color: #666666;"><?php print $wb_root.$sSetupIniFile ?></td>
301
			<td colspan="2"><?php echo $config ?></td>
302
		</tr>
303
		<tr>
304
			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>pages/</td>
305 1654 Luisehahne
			<td><?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>
306 1884 Luisehahne
			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>media/</td>
307 1802 Luisehahne
			<td><?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>
308 1349 Luisehahne
		</tr>
309
		<tr>
310 1884 Luisehahne
			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>templates/</td>
311 1608 Luisehahne
			<td><?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>
312 1884 Luisehahne
			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>modules/</td>
313 1802 Luisehahne
			<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>
314 1608 Luisehahne
		</tr>
315
		<tr>
316 1884 Luisehahne
			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>languages/</td>
317 1529 Luisehahne
			<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>
318 1884 Luisehahne
			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>temp/</td>
319 1529 Luisehahne
			<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>
320 1349 Luisehahne
		</tr>
321 1884 Luisehahne
		<tr>
322
			<td style="line-height: 0.4em;" colspan="4">&nbsp;</td>
323
		</tr>
324 1349 Luisehahne
		</table>
325 1886 Luisehahne
<?php if($installFlag==true) { ?>
326
327 1608 Luisehahne
		<table summary="" cellpadding="3" cellspacing="0" >
328 1349 Luisehahne
		<tr>
329 1608 Luisehahne
			<td colspan="2" class="step-row"><h1 class="step-row">Step 3</h1>&nbsp;Please check URL settings, and select a default timezone and a default backend language...</td>
330 1349 Luisehahne
		</tr>
331
		<tr>
332 1608 Luisehahne
			<td class="name">
333 1349 Luisehahne
				Absolute URL:
334
			</td>
335 1608 Luisehahne
			<td class="value">
336 1349 Luisehahne
				<?php
337
				// Try to guess installation URL
338
				$guessed_url = 'http://'.$_SERVER["SERVER_NAME"].$_SERVER["SCRIPT_NAME"];
339
				$guessed_url = rtrim(dirname($guessed_url), 'install');
340
				?>
341
				<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; } ?>" />
342
			</td>
343
		</tr>
344
		<tr>
345 1608 Luisehahne
			<td class="name">
346 1349 Luisehahne
				Default Timezone:
347
			</td>
348
			<td>
349
				<select <?php echo field_error('default_timezone');?> tabindex="3" name="default_timezone" style="width: 100%;">
350
					<?php
351
					$TIMEZONES['-12'] = 'GMT - 12 Hours';
352
					$TIMEZONES['-11'] = 'GMT -11 Hours';
353
					$TIMEZONES['-10'] = 'GMT -10 Hours';
354
					$TIMEZONES['-9'] = 'GMT -9 Hours';
355
					$TIMEZONES['-8'] = 'GMT -8 Hours';
356
					$TIMEZONES['-7'] = 'GMT -7 Hours';
357
					$TIMEZONES['-6'] = 'GMT -6 Hours';
358
					$TIMEZONES['-5'] = 'GMT -5 Hours';
359
					$TIMEZONES['-4'] = 'GMT -4 Hours';
360
					$TIMEZONES['-3.5'] = 'GMT -3.5 Hours';
361
					$TIMEZONES['-3'] = 'GMT -3 Hours';
362
					$TIMEZONES['-2'] = 'GMT -2 Hours';
363
					$TIMEZONES['-1'] = 'GMT -1 Hour';
364
					$TIMEZONES['0'] = 'GMT';
365
					$TIMEZONES['1'] = 'GMT +1 Hour';
366
					$TIMEZONES['2'] = 'GMT +2 Hours';
367
					$TIMEZONES['3'] = 'GMT +3 Hours';
368
					$TIMEZONES['3.5'] = 'GMT +3.5 Hours';
369
					$TIMEZONES['4'] = 'GMT +4 Hours';
370
					$TIMEZONES['4.5'] = 'GMT +4.5 Hours';
371
					$TIMEZONES['5'] = 'GMT +5 Hours';
372
					$TIMEZONES['5.5'] = 'GMT +5.5 Hours';
373
					$TIMEZONES['6'] = 'GMT +6 Hours';
374
					$TIMEZONES['6.5'] = 'GMT +6.5 Hours';
375
					$TIMEZONES['7'] = 'GMT +7 Hours';
376
					$TIMEZONES['8'] = 'GMT +8 Hours';
377
					$TIMEZONES['9'] = 'GMT +9 Hours';
378
					$TIMEZONES['9.5'] = 'GMT +9.5 Hours';
379
					$TIMEZONES['10'] = 'GMT +10 Hours';
380
					$TIMEZONES['11'] = 'GMT +11 Hours';
381
					$TIMEZONES['12'] = 'GMT +12 Hours';
382
					$TIMEZONES['13'] = 'GMT +13 Hours';
383
					foreach($TIMEZONES AS $hour_offset => $title) {
384
						?>
385
							<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>
386
						<?php
387
					}
388
					?>
389
				</select>
390
			</td>
391
		</tr>
392
		<tr>
393 1608 Luisehahne
			<td class="name">
394 1349 Luisehahne
				Default Language:
395
			</td>
396
			<td>
397
				<select <?php echo field_error('default_language');?> tabindex="3" name="default_language" style="width: 100%;">
398
					<?php
399 1737 Luisehahne
                	$sAutoLanguage = 'EN'; // default, if no information from client available
400
                	if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
401
                		if(preg_match('/([a-z]{2})(?:-[a-z]{2})*/i', strtolower($_SERVER['HTTP_ACCEPT_LANGUAGE']), $matches)) {
402
                			$sAutoLanguage = strtoupper($matches[1]);
403
                		}
404
                	}
405
                	$sAutoLanguage = isset($_SESSION['default_language']) ? $_SESSION['default_language'] : $sAutoLanguage;
406 1349 Luisehahne
					$DEFAULT_LANGUAGE = array(
407
						'BG'=>'Bulgarian', 'CA'=>'Catalan', 'CS'=>'&#268;e&scaron;tina', 'DA'=>'Danish', 'DE'=>'Deutsch', 'EN'=>'English',
408
						'ES'=>'Spanish', 'ET'=>'Eesti', 'FI'=>'Suomi', 'FR'=>'Fran&ccedil;ais',
409
						'HR'=>'Hrvatski', 'HU'=>'Magyar','IT'=>'Italiano', 'LV'=>'Latviesu',
410
						'NL'=>'Nederlands', 'NO'=>'Norsk', 'PL'=>'Polski', 'PT'=>'Portuguese (Brazil)', 'RU'=>'Russian', 'SE'=>'Svenska','SK'=>'Slovensky','TR'=>'Turkish'
411
					);
412
					foreach($DEFAULT_LANGUAGE as $lang_id => $lang_title) {
413
						?>
414 1737 Luisehahne
							<option value="<?php echo $lang_id; ?>"<?php if($sAutoLanguage == $lang_id) { echo ' selected="selected"'; }  ?> ><?php echo $lang_title; ?></option>
415 1349 Luisehahne
						<?php
416
					}
417
					?>
418
				</select>
419
			</td>
420
		</tr>
421 1884 Luisehahne
		<tr>
422
			<td style="line-height: 0.4em;" colspan="2">&nbsp;</td>
423
		</tr>
424 1349 Luisehahne
		</table>
425 1608 Luisehahne
		<table border="0" summary="" cellpadding="0" cellspacing="0">
426 1349 Luisehahne
		<tr>
427 1608 Luisehahne
			<td class="step-row" colspan="3"><h1 class="step-row">Step 4</h1>&nbsp;Please specify your operating system information below...</td>
428 1349 Luisehahne
		</tr>
429
		<tr>
430 1608 Luisehahne
			<td class="name">&nbsp;
431 1349 Luisehahne
				Server Operating System:
432
			</td>
433 1737 Luisehahne
			<td style="<?php echo $operating_system ?>">
434
				<input type="radio" tabindex="4" name="operating_system" id="operating_system_linux" onclick="document.getElementById('file_perms_box').style.display = 'none';" value="linux"<?php if($operating_system == 'linux') { echo ' checked="checked"'; } ?> />
435
				<span style="cursor: pointer;" onclick="javascript:change_os('linux');">Linux/Unix based</span>
436 1349 Luisehahne
				<br />
437 1737 Luisehahne
				<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($operating_system == 'windows') { echo ' checked="checked"'; } ?> />
438
				<span style="cursor: pointer;" onclick="javascript:change_os('windows');">Windows</span>
439 1349 Luisehahne
			</td>
440 1608 Luisehahne
		</tr>
441
		<tr>
442
			<td class="name">&nbsp;</td>
443
			<td class="value">
444
				<div id="file_perms_box" style="line-height:2em; position: relative; width: 100%;float:left; margin: 0; padding: 0; display: <?php if(isset($_SESSION['operating_system']) AND $_SESSION['operating_system'] == 'windows') { echo 'none'; } else { echo 'none'; } ?>;">
445
					<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="checked'; } ?> />
446
 					<label style=" margin: 0;  " for="world_writeable">
447 1349 Luisehahne
						World-writeable file permissions (777)
448
					</label>
449 1608 Luisehahne
				<br />
450
					<p class="warning">(Please note: only recommended for testing environments)</p>
451 1349 Luisehahne
				</div>
452
			</td>
453
		</tr>
454 1884 Luisehahne
		<tr>
455
			<td style="line-height: 0.4em;" colspan="2">&nbsp;</td>
456
		</tr>
457 1349 Luisehahne
		</table>
458 1608 Luisehahne
		<table summary="" cellpadding="0" cellspacing="0">
459 1349 Luisehahne
    		<tr>
460 1608 Luisehahne
    			<td colspan="2" class="step-row"><h1 class="step-row">Step 5</h1>&nbsp;Please enter your MySQL database server details below...</td>
461 1349 Luisehahne
    		</tr>
462
    		<tr>
463 1608 Luisehahne
    			<td class="name">Host Name</td>
464
    			<td class="value">
465
    				<input <?php echo field_error('database_host');?> type="text" tabindex="7" name="database_host" value="<?php if(isset($_SESSION['database_host'])) { echo $_SESSION['database_host']; } else { echo 'localhost'; } ?>" />
466 1349 Luisehahne
    			</td>
467
    		</tr>
468
    		<tr>
469 1608 Luisehahne
    			<td class="name">Database Name&nbsp;([a-zA-Z0-9_-])</td>
470
    			<td class="value">
471
    				<input <?php echo field_error('database_name')?> type="text" tabindex="8" name="database_name" value="<?php if(isset($_SESSION['database_name'])) { echo $_SESSION['database_name']; } else { echo 'DatabaseName'; } ?>" />
472 1349 Luisehahne
    			</td>
473
    		</tr>
474
		<tr>
475 1608 Luisehahne
			<td class="name">Table Prefix&nbsp;([a-zA-Z0-9_])</td>
476
			<td class="value">
477 1614 Luisehahne
				<input <?php echo field_error('table_prefix')?> type="text" tabindex="9" name="table_prefix" value="<?php if(isset($_SESSION['table_prefix'])) { echo $_SESSION['table_prefix']; } else { echo 'wb_'; } ?>" />
478 1349 Luisehahne
			</td>
479 1608 Luisehahne
		</tr>
480
		<tr>
481
    			<td class="name">Username:</td>
482
    			<td class="value">
483 1614 Luisehahne
    				<input <?php echo field_error('database_username');?> type="text" tabindex="10" name="database_username" value="<?php if(isset($_SESSION['database_username'])) { echo $_SESSION['database_username']; } else { echo 'root'; } ?>" />
484 1608 Luisehahne
    			</td>
485
		</tr>
486
		<tr>
487
    			<td class="name">Password:</td>
488
    			<td class="value">
489 1614 Luisehahne
    				<input type="password" tabindex="11" name="database_password" value="<?php if(isset($_SESSION['database_password'])) { echo $_SESSION['database_password']; } ?>" />
490 1608 Luisehahne
    			</td>
491
		</tr>
492
		<tr>
493
			<td class="name hide" colspan="2">
494 1349 Luisehahne
				<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"'; } ?> />
495
				<label for="install_tables" style="color: #666666;">Install Tables</label>
496
				<br />
497 1608 Luisehahne
				<span style="font-size: 1px; color: #666666;">(Please note: May remove existing tables and data)</span>
498 1349 Luisehahne
			</td>
499
		</tr>
500 1884 Luisehahne
		<tr>
501
			<td style="line-height: 0.4em;" colspan="2">&nbsp;</td>
502
		</tr>
503 1608 Luisehahne
		</table>
504
		<table summary="" cellpadding="0" cellspacing="0" >
505
		<tbody>
506 1349 Luisehahne
		<tr>
507 1608 Luisehahne
			<td colspan="2" class="step-row"><h1 class="step-row">Step 6</h1>&nbsp;Please enter your website title below...</td>
508 1349 Luisehahne
		</tr>
509
		<tr>
510 1608 Luisehahne
			<td class="name">Website Title:</td>
511
			<td class="value">
512
				<input <?php echo field_error('website_title');?> type="text" tabindex="13" name="website_title" value="<?php if(isset($_SESSION['website_title'])) { echo $_SESSION['website_title']; } else { echo 'Enter your website title'; } ?>" />
513 1349 Luisehahne
			</td>
514
		</tr>
515 1884 Luisehahne
		<tr>
516
			<td style="line-height: 0.4em;" colspan="2">&nbsp;</td>
517
		</tr>
518 1608 Luisehahne
		</tbody>
519
		</table>
520
		<table summary="" cellpadding="0" cellspacing="0" border="0">
521 1349 Luisehahne
		<tr>
522 1608 Luisehahne
			<td colspan="2" class="step-row"><h1 class="step-row">Step 7</h1> Please enter your Administrator account details below...</td>
523 1349 Luisehahne
		</tr>
524
		<tr>
525 1608 Luisehahne
			<td class="name">Loginname:</td>
526
			<td class="value">
527
				<input <?php echo field_error('admin_username');?> type="text" tabindex="14" name="admin_username" value="<?php if(isset($_SESSION['admin_username'])) { echo $_SESSION['admin_username']; } else { echo 'admin'; } ?>" />
528 1349 Luisehahne
			</td>
529 1608 Luisehahne
		</tr>
530
		<tr>
531
			<td class="name">Email:</td>
532
			<td class="value">
533
				<input <?php echo field_error('admin_email');?> type="text" tabindex="15" name="admin_email" value="<?php if(isset($_SESSION['admin_email'])) { echo $_SESSION['admin_email']; } ?>" />
534 1349 Luisehahne
			</td>
535
		</tr>
536
		<tr>
537 1608 Luisehahne
			<td class="name">Password:</td>
538
			<td class="value">
539
				<input <?php echo field_error('admin_password');?> type="password" tabindex="16" name="admin_password" value="" />
540 1349 Luisehahne
			</td>
541
		</tr>
542
		<tr>
543 1608 Luisehahne
			<td class="name">Re-Password:</td>
544
			<td class="value">
545
				<input <?php echo field_error('admin_repassword');?> type="password" tabindex="17" name="admin_repassword" value=""  />
546
			</td>
547 1349 Luisehahne
		</tr>
548 1884 Luisehahne
		<tr>
549
			<td style="line-height: 0.4em;" colspan="2">&nbsp;</td>
550
		</tr>
551 1608 Luisehahne
		</table>
552 1886 Luisehahne
<?php } ?>
553
554 1608 Luisehahne
		<table summary="" cellpadding="0" cellspacing="0">
555 1349 Luisehahne
				<tr valign="top">
556 1608 Luisehahne
					<td><strong>Please note: &nbsp;</strong></td>
557
				</tr>
558
				<tr valign="top">
559 1349 Luisehahne
					<td>
560 1608 Luisehahne
						<p class="warning">
561 1609 Luisehahne
						WebsiteBaker is released under the
562 1349 Luisehahne
						<a href="http://www.gnu.org/licenses/gpl.html" target="_blank" tabindex="19">GNU General Public License</a>
563
						<br />
564
						By clicking install, you are accepting the license.
565 1608 Luisehahne
						</p>
566 1349 Luisehahne
					</td>
567
				</tr>
568 1608 Luisehahne
				<tr valign="top">
569
			<td>
570
			<p class="center">
571 1529 Luisehahne
				<?php if($installFlag == true) { ?>
572 1608 Luisehahne
				<input type="submit" tabindex="20" name="install" value="Install WebsiteBaker" />
573 1529 Luisehahne
				<?php } else { ?>
574 1608 Luisehahne
				<input type="button" tabindex="20" name="restart" value="Check your Settings in Step1 or Step2" class="submit" onclick="javascript: window.location = '<?php print $_SERVER['SCRIPT_NAME'] ?>';" />
575 1529 Luisehahne
				<?php } ?>
576 1608 Luisehahne
			</p>
577 1349 Luisehahne
			</td>
578
		</tr>
579
		</table>
580
581
</form>
582
583 1608 Luisehahne
	<div style="padding: 10px 0px 10px 0px; text-align:center;">
584 1349 Luisehahne
		<!-- 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. -->
585 1614 Luisehahne
		<a href="http://www.websitebaker.org/" style="color: #000000;" target="_blank">WebsiteBaker</a>
586 1349 Luisehahne
		is	released under the
587
		<a href="http://www.gnu.org/licenses/gpl.html" style="color: #000000;" target="_blank">GNU General Public License</a>
588
		<!-- 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. -->
589 1608 Luisehahne
	</div >
590
</div>
591 1349 Luisehahne
592
</body>
593
</html>