Project

General

Profile

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 1529 2011-11-25 05:03:32Z Luisehahne $
13
 * @filesource		$HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/install/index.php $
14
 * @lastmodified    $Date: 2011-11-25 06:03:32 +0100 (Fri, 25 Nov 2011) $
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
	$mod_path = dirname(str_replace('\\', '/', __FILE__));
25
    $doc_root = rtrim(str_replace('\\', '/',$_SERVER['DOCUMENT_ROOT']),'/');
26
	$mod_name = basename($mod_path);
27
	$wb_path = dirname(dirname(str_replace('\\', '/', __FILE__)));
28
    $wb_root = str_replace($doc_root,'',$wb_path);
29

    
30
// Function to highlight input fields which contain wrong/missing data
31
function field_error($field_name='') {
32
	if(!defined('SESSION_STARTED') || $field_name == '') return;
33
	if(isset($_SESSION['ERROR_FIELD']) && $_SESSION['ERROR_FIELD'] == $field_name) {
34
		return ' class="wrong"';
35
	}
36
}
37

    
38
$installFlag = true;
39
// Check if the page has been reloaded
40
if(!isset($_GET['sessions_checked']) OR $_GET['sessions_checked'] != 'true') {
41
	// Set session variable
42
	$_SESSION['session_support'] = '<font class="good">Enabled</font>';
43
	// Reload page
44
	header('Location: index.php?sessions_checked=true');
45
	exit(0);
46
} else {
47
	// Check if session variable has been saved after reload
48
	if(isset($_SESSION['session_support'])) {
49
		$session_support = $_SESSION['session_support'];
50
	} else {
51
		$installFlag = false;
52
		$session_support = '<font class="bad">Disabled</font>';
53
	}
54
}
55
// Check if AddDefaultCharset is set
56
$e_adc=false;
57
$sapi=php_sapi_name();
58
if(strpos($sapi, 'apache')!==FALSE || strpos($sapi, 'nsapi')!==FALSE) {
59
	flush();
60
	$apache_rheaders=apache_response_headers();
61
	foreach($apache_rheaders AS $h) {
62
		if(strpos($h, 'html; charset')!==FALSE) {
63
			preg_match('/charset\s*=\s*([a-zA-Z0-9- _]+)/', $h, $match);
64
			$apache_charset=$match[1];
65
			$e_adc=$apache_charset;
66
		}
67
	}
68
}
69

    
70
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
71
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
72
<head>
73
<title>Website Baker Installation Wizard</title>
74
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
75
<link href="stylesheet.css" rel="stylesheet" type="text/css" />
76
<script language="javascript" type="text/javascript">
77

    
78
function confirm_link(message, url) {
79
	if(confirm(message)) location.href = url;
80
}
81
function change_os(type) {
82
	if(type == 'linux') {
83
		document.getElementById('operating_system_linux').checked = true;
84
		document.getElementById('operating_system_windows').checked = false;
85
		document.getElementById('file_perms_box').style.display = 'block';
86
	} else if(type == 'windows') {
87
		document.getElementById('operating_system_linux').checked = false;
88
		document.getElementById('operating_system_windows').checked = true;
89
		document.getElementById('file_perms_box').style.display = 'none';
90
	}
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">&nbsp;</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;">AddDefaultCharset unset</td>
166
			<td width="60">
167
				<?php
168
					if($e_adc) {
169
						$installFlag = false;
170
						?><font class="bad">No</font><?php
171
					} else {
172
						?><font class="good">Yes</font><?php
173
					}
174
				?>
175
			</td>
176
			<td colspan="4">&nbsp;</td>
177
		</tr>
178
		<?php if($e_adc) {
179
			$installFlag = false;
180
		?>
181
		<tr>
182
			<td colspan="6" style="font-size: 10px;" class="bad">Please note: AddDefaultCharset is set to <?php echo $e_adc;?> in apache.conf.<br />If you have to use umlauts (e.g. &auml; &aacute;) please change this to Off. - Or use <?php echo $e_adc;?> inside website baker, too.</td>
183
		</tr>
184
		<?php } ?>
185
		</table>
186
		<table cellpadding="3" cellspacing="0" width="100%" align="center">
187
		<tr>
188
			<td colspan="8"><h1>Step 2</h1>Please check the following files/folders are writeable before continuing...</td>
189
		</tr>
190
		<tr>
191
<?php
192
$config = '<font class="good">Writeable</font>';
193
$configFile = '/config.php';
194
if(!isset($_SESSION['config_rename'])) {
195
	if( ( file_exists($wb_path.$configFile)==false ) && (file_exists($wb_path.'/config.php.new')==true ) ){
196
		if( (is_writeable($wb_path.'/config.php.new')==true) && (rename($wb_path.'/config.php.new',$wb_path.'/config.php')) ) {
197
			$config = '<font class="good">Writeable</font>';
198
			$_SESSION['config_rename'] = true;
199
		} else {
200
			$installFlag = false;
201
			$configFile = '/config.php.new';
202
			$config = '<font class="bad">Unwriteable</font>';
203
		}
204
	} elseif( (file_exists($wb_path.'/config.php.new')==true) && ( file_exists($wb_path.$configFile)==true ) ) {
205
		if( (file_exists($wb_path.$configFile)==true) ) {
206
			$installFlag = false;
207
			$config = '<font class="bad">Already installed?</font>';
208
		}
209
	} elseif( (is_writeable($wb_path.'/config.php.new')==false) ) {
210
			$installFlag = false;
211
			$configFile = '/config.php.new';
212
			$config = '<font class="bad">Unwriteable</font>';
213
	}
214
}
215
?>
216
			<td width="150px" style="color: #666666;"><?php print $wb_root.$configFile ?></td>
217
			<td width="150px"><?php echo $config ?></td>
218
			<td width="140px" style="color: #666666;"><?php print $wb_root ?>/pages/</td>
219
			<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>
220
			<td width="140px" style="color: #666666;"><?php print $wb_root ?>/media/</td>
221
			<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>
222
			<td width="140px" style="color: #666666;"><?php print $wb_root ?>/templates/</td>
223
			<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>
224
		</tr>
225
		<tr>
226
			<td style="color: #666666;"><?php print $wb_root ?>/modules/</td>
227
			<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>
228
			<td style="color: #666666;"><?php print $wb_root ?>/languages/</td>
229
			<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>
230
			<td style="color: #666666;"><?php print $wb_root ?>/temp/</td>
231
			<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>
232
			<td>&nbsp;</td>
233
			<td>&nbsp;</td>
234
		</tr>
235
		</table>
236
		<table cellpadding="3" cellspacing="0" width="100%" align="center">
237
		<tr>
238
			<td colspan="2"><h1>Step 3</h1>Please check your path settings, and select a default timezone and a default backend language...</td>
239
		</tr>
240
		<tr>
241
			<td width="125" style="color: #666666;">
242
				Absolute URL:
243
			</td>
244
			<td>
245
				<?php
246
				// Try to guess installation URL
247
				$guessed_url = 'http://'.$_SERVER["SERVER_NAME"].$_SERVER["SCRIPT_NAME"];
248
				$guessed_url = rtrim(dirname($guessed_url), 'install');
249
				?>
250
				<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; } ?>" />
251
			</td>
252
		</tr>
253
		<tr>
254
			<td style="color: #666666;">
255
				Default Timezone:
256
			</td>
257
			<td>
258
				<select <?php echo field_error('default_timezone');?> tabindex="3" name="default_timezone" style="width: 100%;">
259
					<?php
260
					$TIMEZONES['-12'] = 'GMT - 12 Hours';
261
					$TIMEZONES['-11'] = 'GMT -11 Hours';
262
					$TIMEZONES['-10'] = 'GMT -10 Hours';
263
					$TIMEZONES['-9'] = 'GMT -9 Hours';
264
					$TIMEZONES['-8'] = 'GMT -8 Hours';
265
					$TIMEZONES['-7'] = 'GMT -7 Hours';
266
					$TIMEZONES['-6'] = 'GMT -6 Hours';
267
					$TIMEZONES['-5'] = 'GMT -5 Hours';
268
					$TIMEZONES['-4'] = 'GMT -4 Hours';
269
					$TIMEZONES['-3.5'] = 'GMT -3.5 Hours';
270
					$TIMEZONES['-3'] = 'GMT -3 Hours';
271
					$TIMEZONES['-2'] = 'GMT -2 Hours';
272
					$TIMEZONES['-1'] = 'GMT -1 Hour';
273
					$TIMEZONES['0'] = 'GMT';
274
					$TIMEZONES['1'] = 'GMT +1 Hour';
275
					$TIMEZONES['2'] = 'GMT +2 Hours';
276
					$TIMEZONES['3'] = 'GMT +3 Hours';
277
					$TIMEZONES['3.5'] = 'GMT +3.5 Hours';
278
					$TIMEZONES['4'] = 'GMT +4 Hours';
279
					$TIMEZONES['4.5'] = 'GMT +4.5 Hours';
280
					$TIMEZONES['5'] = 'GMT +5 Hours';
281
					$TIMEZONES['5.5'] = 'GMT +5.5 Hours';
282
					$TIMEZONES['6'] = 'GMT +6 Hours';
283
					$TIMEZONES['6.5'] = 'GMT +6.5 Hours';
284
					$TIMEZONES['7'] = 'GMT +7 Hours';
285
					$TIMEZONES['8'] = 'GMT +8 Hours';
286
					$TIMEZONES['9'] = 'GMT +9 Hours';
287
					$TIMEZONES['9.5'] = 'GMT +9.5 Hours';
288
					$TIMEZONES['10'] = 'GMT +10 Hours';
289
					$TIMEZONES['11'] = 'GMT +11 Hours';
290
					$TIMEZONES['12'] = 'GMT +12 Hours';
291
					$TIMEZONES['13'] = 'GMT +13 Hours';
292
					foreach($TIMEZONES AS $hour_offset => $title) {
293
						?>
294
							<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>
295
						<?php
296
					}
297
					?>
298
				</select>
299
			</td>
300
		</tr>
301
		<tr>
302
			<td style="color: #666666;">
303
				Default Language:
304
			</td>
305
			<td>
306
				<select <?php echo field_error('default_language');?> tabindex="3" name="default_language" style="width: 100%;">
307
					<?php
308
					$DEFAULT_LANGUAGE = array(
309
						'BG'=>'Bulgarian', 'CA'=>'Catalan', 'CS'=>'&#268;e&scaron;tina', 'DA'=>'Danish', 'DE'=>'Deutsch', 'EN'=>'English',
310
						'ES'=>'Spanish', 'ET'=>'Eesti', 'FI'=>'Suomi', 'FR'=>'Fran&ccedil;ais',
311
						'HR'=>'Hrvatski', 'HU'=>'Magyar','IT'=>'Italiano', 'LV'=>'Latviesu',
312
						'NL'=>'Nederlands', 'NO'=>'Norsk', 'PL'=>'Polski', 'PT'=>'Portuguese (Brazil)', 'RU'=>'Russian', 'SE'=>'Svenska','SK'=>'Slovensky','TR'=>'Turkish'
313
					);
314
					foreach($DEFAULT_LANGUAGE as $lang_id => $lang_title) {
315
						?>
316
							<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>
317
						<?php
318
					}
319
					?>
320
				</select>
321
			</td>
322
		</tr>
323
		</table>
324
		<table cellpadding="5" cellspacing="0" width="100%" align="center">
325
		<tr>
326
			<td colspan="3"><h1>Step 4</h1>Please specify your operating system information below...</td>
327
		</tr>
328
		<tr>
329
			<td width="170">
330
				Server Operating System:
331
			</td>
332
			<td width="180">
333
				<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"'; } ?> />
334
				<span style="cursor: pointer;" onclick="javascript: change_os('linux');">Linux/Unix based</span>
335
				<br />
336
				<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"'; } ?> />
337
				<span style="cursor: pointer;" onclick="javascript: change_os('windows');">Windows</span>
338
			</td>
339
			<td>
340
				<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'; } ?>;">
341
					<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'; } ?> />
342
					<label for="world_writeable">
343
						World-writeable file permissions (777)
344
					</label>
345
					<br />
346
					<font class="note">(Please note: only recommended for testing environments)</font>
347
				</div>
348
			</td>
349
		</tr>
350
		</table>
351
		<table cellpadding="5" cellspacing="0" width="100%" align="center">
352
    		<tr>
353
    			<td colspan="5">Please enter your MySQL database server details below...</td>
354
    		</tr>
355
    		<tr>
356
    			<td width="120" style="color: #666666;">Host Name:</td>
357
    			<td width="230">
358
    				<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'; } ?>" />
359
    			</td>
360
    			<td width="7">&nbsp;</td>
361
    			<td width="70" style="color: #666666;">Username:</td>
362
    			<td>
363
    				<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'; } ?>" />
364
    			</td>
365
    		</tr>
366
    		<tr>
367
    			<td style="color: #666666;">Database Name:<br />[a-zA-Z0-9_-]</td>
368
    			<td>
369
    				<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'; } ?>" />
370
    			</td>
371
    			<td>&nbsp;</td>
372
    			<td style="color: #666666;">Password:</td>
373
    			<td>
374
    				<input type="password" tabindex="10" name="database_password" style="width: 98%;" value="<?php if(isset($_SESSION['database_password'])) { echo $_SESSION['database_password']; } ?>" />
375
    			</td>
376
    		</tr>
377
		<tr>
378
			<td style="color: #666666;">Table Prefix:<br />[a-zA-Z0-9_]</td>
379
			<td>
380
				<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_'; } ?>" />
381
			</td>
382
			<td>&nbsp;</td>
383
			<td colspan="2">
384
				<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"'; } ?> />
385
				<label for="install_tables" style="color: #666666;">Install Tables</label>
386
				<br />
387
				<span style="font-size: 10px; color: #666666;">(Please note: May remove existing tables and data)</span>
388
			</td>
389
		</tr>
390
		<tr>
391
			<td colspan="5"><h1>Step 5</h1>Please enter your website title below...</td>
392
		</tr>
393
		<tr>
394
			<td style="color: #666666;" colspan="1">Website Title:</td>
395
			<td colspan="4">
396
				<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'; } ?>" />
397
			</td>
398
		</tr>
399
		<tr>
400
			<td colspan="5"><h1>Step 6</h1>Please enter your Administrator account details below...</td>
401
		</tr>
402
		<tr>
403
			<td style="color: #666666;">Username:</td>
404
			<td>
405
				<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'; } ?>" />
406
			</td>
407
			<td>&nbsp;</td>
408
			<td style="color: #666666;">Password:</td>
409
			<td>
410
				<input <?php echo field_error('admin_password');?> type="password" tabindex="16" name="admin_password" style="width: 98%;" value="" />
411
			</td>
412
		</tr>
413
		<tr>
414
			<td style="color: #666666;">Email:</td>
415
			<td>
416
				<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']; } ?>" />
417
			</td>
418
			<td>&nbsp;</td>
419
			<td style="color: #666666;">Re-Password:</td>
420
			<td>
421
				<input <?php echo field_error('admin_repassword');?> type="password" tabindex="17" name="admin_repassword" style="width: 98%;" value=""  />
422
			</td>
423
		</tr>
424
		<tr>
425
			<td colspan="5" style="padding: 10px; padding-bottom: 0;"><h1 style="font-size: 0px;">&nbsp;</h1></td>
426
		</tr>
427
		<tr>
428
			<td colspan="4">
429
				<table cellpadding="0" cellspacing="0" width="100%" border="0">
430
				<tr valign="top">
431
					<td>Please note: &nbsp;</td>
432
					<td>
433
						Website Baker is released under the
434
						<a href="http://www.gnu.org/licenses/gpl.html" target="_blank" tabindex="19">GNU General Public License</a>
435
						<br />
436
						By clicking install, you are accepting the license.
437
					</td>
438
				</tr>
439
				</table>
440
			</td>
441
			<td colspan="1" align="right">
442
				<?php if($installFlag == true) { ?>
443
				<input type="submit" tabindex="20" name="submit" value="Install WebsiteBaker" />
444
				<?php } else { ?>
445
				<input type="button" tabindex="20" name="submit" value="Check your Settings in Step1 or Step2" class="submit" />
446
				<?php } ?>
447
			</td>
448
		</tr>
449
		</table>
450
	</td>
451
</tr>
452
</table>
453

    
454
</form>
455

    
456
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0px 10px 0px;">
457
<tr>
458
	<td align="center" style="font-size: 10px;">
459
		<!-- 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. -->
460
		<a href="http://www.websitebaker.org/" style="color: #000000;" target="_blank">Website Baker</a>
461
		is	released under the
462
		<a href="http://www.gnu.org/licenses/gpl.html" style="color: #000000;" target="_blank">GNU General Public License</a>
463
		<!-- 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. -->
464
	</td>
465
</tr>
466
</table>
467

    
468
</body>
469
</html>
(1-1/3)