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 2104 darkviper
// PHP less then 5.4.0 is prohibited ---
36
if (version_compare(PHP_VERSION, '5.4.0', '<')) {
37
    $sMsg = '<p style="color: #ff0000;">WebsiteBaker 2.8.4 and above is not able to run with PHP-Version less then 5.4.0!!<br />'
38
          . 'Please change your PHP-Version to any kind from 5.4.0 and up!<br />'
39 2075 darkviper
          . 'If you have problems to solve that, ask your hosting provider for it.<br  />'
40
          . 'The very best solution is the use of PHP-5.4 and up</p>';
41
    die($sMsg);
42
}
43 2104 darkviper
include(__DIR__.'/InstallHelper.php');
44 1349 Luisehahne
// Start a session
45
if(!defined('SESSION_STARTED')) {
46
	session_name('wb_session_id');
47
	session_start();
48
	define('SESSION_STARTED', true);
49
}
50
51 1884 Luisehahne
$doc_root = str_replace('\\','/',rtrim(realpath($_SERVER['DOCUMENT_ROOT']),'/').'/');
52
$wb_path = str_replace('\\','/',rtrim(dirname(dirname(realpath( __FILE__))),'/')).'/';
53
$wb_root = str_replace(($doc_root),'',$wb_path);
54 1530 Luisehahne
55 1349 Luisehahne
// Function to highlight input fields which contain wrong/missing data
56
function field_error($field_name='') {
57
	if(!defined('SESSION_STARTED') || $field_name == '') return;
58
	if(isset($_SESSION['ERROR_FIELD']) && $_SESSION['ERROR_FIELD'] == $field_name) {
59
		return ' class="wrong"';
60
	}
61
}
62
63 1529 Luisehahne
$installFlag = true;
64 1349 Luisehahne
// Check if the page has been reloaded
65
if(!isset($_GET['sessions_checked']) OR $_GET['sessions_checked'] != 'true') {
66
	// Set session variable
67
	$_SESSION['session_support'] = '<font class="good">Enabled</font>';
68
	// Reload page
69
	header('Location: index.php?sessions_checked=true');
70
	exit(0);
71
} else {
72
	// Check if session variable has been saved after reload
73
	if(isset($_SESSION['session_support'])) {
74
		$session_support = $_SESSION['session_support'];
75 1529 Luisehahne
	} else {
76
		$installFlag = false;
77 1349 Luisehahne
		$session_support = '<font class="bad">Disabled</font>';
78
	}
79
}
80 2030 Luisehahne
$getMagicQuotesGpc = '<font class="good">Disabled</font>';
81
if ( function_exists('get_magic_quotes_gpc')  && filter_var(strtolower(get_magic_quotes_gpc()), FILTER_VALIDATE_BOOLEAN ) ) {
82
    $getMagicQuotesGpc = '<font class="bad">Enabled</font>';
83
    $installFlag = false;
84
}
85
86 1349 Luisehahne
// Check if AddDefaultCharset is set
87
$e_adc=false;
88
$sapi=php_sapi_name();
89
if(strpos($sapi, 'apache')!==FALSE || strpos($sapi, 'nsapi')!==FALSE) {
90
	flush();
91
	$apache_rheaders=apache_response_headers();
92
	foreach($apache_rheaders AS $h) {
93
		if(strpos($h, 'html; charset')!==FALSE) {
94
			preg_match('/charset\s*=\s*([a-zA-Z0-9- _]+)/', $h, $match);
95
			$apache_charset=$match[1];
96
			$e_adc=$apache_charset;
97
		}
98
	}
99
}
100
101 1884 Luisehahne
//$sapi_type = php_sapi_name();
102 1737 Luisehahne
if(!isset($_SESSION['operating_system'])) {
103 1884 Luisehahne
	$operating_system = ((strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? 'windows' : 'linux');
104 1737 Luisehahne
} else {
105 1884 Luisehahne
	$operating_system = $_SESSION['operating_system'];
106 1737 Luisehahne
}
107 1884 Luisehahne
108
function checkConfigFile ($sWbPath,$sType ) {
109
	$config = '';
110
	$sConfigContent	= "<?php\n";
111
	$sConfigFile = $sWbPath.$sType.'.php';
112
113
// config.php or config.php.new
114 2030 Luisehahne
		if ((file_exists($sConfigFile)==true)) {
115 1884 Luisehahne
// next operation only if file is writeable
116 2030 Luisehahne
			if (is_writeable($sConfigFile)) {
117 1884 Luisehahne
// already installed? it's not empty
118 2030 Luisehahne
				if (filesize($sConfigFile) > 100) {
119 1884 Luisehahne
					$config = '<font class="bad">Already installed? Check!</font>';
120
// try to open and to write
121 2030 Luisehahne
				} elseif (!$handle = fopen($sConfigFile, 'w')) {
122 1884 Luisehahne
					$config = '<font class="bad">Not Writeable</font>';
123
				} else {
124
					if (fwrite($handle, $sConfigContent) === FALSE) {
125
						$config = '<font class="bad">Not Writeable</font>';
126
					} else {
127
						$config = '';
128
						$_SESSION[$sType.'_rename'] = true;
129
					}
130
					// Close file
131
					fclose($handle);
132 2030 Luisehahne
				}
133 1884 Luisehahne
			} else {
134
				$config = '<font class="bad">Not Writeable</font>';
135
			}
136
// it's config.php.new
137 2030 Luisehahne
		} elseif ((file_exists($sConfigFile.'.new')==true)) {
138 1884 Luisehahne
			$config = '<font class="bad">Please rename to '.$sType.'.php</font>';
139
		} else {
140
			$config = '<font class="bad">Missing!!?</font>';
141
		}
142
	return $config;
143
}
144
145
146 1529 Luisehahne
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
147 1349 Luisehahne
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
148
<head>
149 1609 Luisehahne
<title>WebsiteBaker Installation Wizard</title>
150 1349 Luisehahne
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
151
<link href="stylesheet.css" rel="stylesheet" type="text/css" />
152 1737 Luisehahne
<script type="text/javascript">
153 1349 Luisehahne
154
function confirm_link(message, url) {
155
	if(confirm(message)) location.href = url;
156
}
157
function change_os(type) {
158
	if(type == 'linux') {
159
		document.getElementById('operating_system_linux').checked = true;
160
		document.getElementById('operating_system_windows').checked = false;
161 1608 Luisehahne
		document.getElementById('file_perms_box').style.display = 'none';
162 1349 Luisehahne
	} else if(type == 'windows') {
163
		document.getElementById('operating_system_linux').checked = false;
164
		document.getElementById('operating_system_windows').checked = true;
165
		document.getElementById('file_perms_box').style.display = 'none';
166
	}
167
}
168
</script>
169
</head>
170
<body>
171 1608 Luisehahne
<div class="body">
172
<table summary="" cellpadding="0" cellspacing="0">
173
<tr style="background: #a9c9ea;">
174
	<td valign="top">
175 2090 darkviper
		<img src="../templates/WbTheme/images/logo.png" alt="Logo" />
176 1349 Luisehahne
	</td>
177 1529 Luisehahne
	<td>
178
		<h1 style="border:none; margin-top:1em;font-size:150%;">Installation Wizard</h1>
179 1349 Luisehahne
	</td>
180
</tr>
181
</table>
182
183 2095 darkviper
<form name="website_baker_installation_wizard" action="save.php" method="post" accept-charset="UTF-8">
184 1349 Luisehahne
<input type="hidden" name="url" value="" />
185
<input type="hidden" name="username_fieldname" value="admin_username" />
186
<input type="hidden" name="password_fieldname" value="admin_password" />
187
<input type="hidden" name="remember" id="remember" value="true" />
188
189 1608 Luisehahne
		<div style="padding: 5px; text-align: center; font-weight: bold;">
190 1609 Luisehahne
			Welcome to the WebsiteBaker Installation Wizard.
191 1608 Luisehahne
		</div>
192 1349 Luisehahne
		<?php
193
		if(isset($_SESSION['message']) AND $_SESSION['message'] != '') {
194 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
195 1349 Luisehahne
		}
196
		?>
197 1608 Luisehahne
		<table summary="" cellpadding="0" cellspacing="0" border="0">
198 1349 Luisehahne
		<tr>
199 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>
200 1349 Luisehahne
		</tr>
201
		<?php if($session_support != '<font class="good">Enabled</font>') { ?>
202
		<tr>
203 1608 Luisehahne
			<td colspan="6" class="error">Please note: PHP Session Support may appear disabled if your browser does not support cookies.</td>
204 1349 Luisehahne
		</tr>
205
		<?php } ?>
206
		<tr>
207 2104 darkviper
			<td style="color: #666666;">PHP Session Support</td>
208 1608 Luisehahne
			<td>
209 2104 darkviper
				<?php echo $session_support; ?>
210 1349 Luisehahne
			</td>
211 2104 darkviper
			<td style="color: #666666;">
212
                &nbsp;
213
            </td>
214
			<td>
215 2107 darkviper
                &nbsp;
216 2104 darkviper
            </td>
217 1349 Luisehahne
		</tr>
218 1565 Luisehahne
	<tr>
219 1884 Luisehahne
		<td style="color: #666666;">PHP Interface</td>
220 2030 Luisehahne
			<td>
221 1884 Luisehahne
				<?php
222
						?><font class="good">
223
						<?php echo $sapi ?>
224
						</font>
225
			</td>
226 2104 darkviper
		<td style="color: #666666;">Server DefaultCharset</td>
227 2030 Luisehahne
			<td >
228
				<?php
229 1565 Luisehahne
					$chrval = (($e_adc != '') && (strtolower($e_adc) != 'utf-8') ? true : false);
230
					if($chrval == false) {
231
						?><font class="good">
232
						<?php echo (($e_adc=='') ? 'OK' : $e_adc) ?>
233
						</font>
234
						<?php
235 1349 Luisehahne
					} else {
236 1565 Luisehahne
						?><font class="bad"><?php echo $e_adc ?></font><?php
237 1349 Luisehahne
					}
238
				?>
239
			</td>
240
		</tr>
241 1565 Luisehahne
		<?php if($chrval == true) {
242 1529 Luisehahne
		?>
243 1349 Luisehahne
		<tr>
244 1565 Luisehahne
			<td colspan="6" style="font-size: 10px;" class="bad">
245
<p class="warning">
246
<b>Please note:</b> Yor webserver is configured to deliver <b><?php echo $e_adc;?></b> charset only.<br />
247
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 />
248
In any case you can choose <b><?php echo $e_adc;?></b> in the settings of WebsiteBaker.<br />
249
But this solution does not guarranty a correct displaying of the content from all modules!
250
</p>
251
</td>
252 1608 Luisehahne
</tr>
253
<?php } ?>
254 1884 Luisehahne
<tr>
255
	<td style="line-height: 0.4em;" colspan="4">&nbsp;</td>
256
</tr>
257 1608 Luisehahne
</table>
258
<table summary="" cellpadding="3" cellspacing="0">
259
<tr>
260 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>
261 1608 Luisehahne
</tr>
262 1529 Luisehahne
<?php
263 1884 Luisehahne
	$sTmp = '';
264
	$config = '';
265
	$sConfigFile = 'config.php.new';
266
	if( ($sTmp = checkConfigFile($wb_path,'config')) === '' ) {
267
		$config = '<font class="good">Writeable</font>';
268
	} else {
269
		$config = $sTmp;
270 1529 Luisehahne
	}
271 1885 Luisehahne
	$sConfigFile = preg_match('/(?:rename)/i',$config) ? $sConfigFile : 'config.php';
272 1884 Luisehahne
	$installFlag = $installFlag && ($sTmp == '');
273 1529 Luisehahne
?>
274 1608 Luisehahne
		<tr>
275 1884 Luisehahne
			<td colspan="2" style="color: #666666;"><?php print $wb_root.$sConfigFile ?></td>
276 1802 Luisehahne
			<td colspan="2"><?php echo $config ?></td>
277
		</tr>
278 1884 Luisehahne
<?php
279
	$sTmp = '';
280
	$config = '';
281
	$sSetupIniFile = 'setup.ini.php.new';
282
	if( ($sTmp = checkConfigFile($wb_path,'setup.ini')) === '' ) {
283
		$config = '<font class="good">Writeable</font>';
284
	} else {
285
		$config = $sTmp;
286
	}
287
	$sSetupIniFile = preg_match('/(?:rename)/i',$config) ? $sSetupIniFile : 'setup.ini.php';
288
	$installFlag = $installFlag && ($sTmp == '');
289
?>
290 1802 Luisehahne
		<tr>
291 1884 Luisehahne
			<td colspan="2" style="color: #666666;"><?php print $wb_root.$sSetupIniFile ?></td>
292
			<td colspan="2"><?php echo $config ?></td>
293
		</tr>
294
		<tr>
295
			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>pages/</td>
296 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>
297 1884 Luisehahne
			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>media/</td>
298 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>
299 1349 Luisehahne
		</tr>
300
		<tr>
301 1884 Luisehahne
			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>templates/</td>
302 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>
303 1884 Luisehahne
			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>modules/</td>
304 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>
305 1608 Luisehahne
		</tr>
306
		<tr>
307 1884 Luisehahne
			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>languages/</td>
308 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>
309 1884 Luisehahne
			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>temp/</td>
310 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>
311 1349 Luisehahne
		</tr>
312 1884 Luisehahne
		<tr>
313
			<td style="line-height: 0.4em;" colspan="4">&nbsp;</td>
314
		</tr>
315 1349 Luisehahne
		</table>
316 1886 Luisehahne
<?php if($installFlag==true) { ?>
317
318 1608 Luisehahne
		<table summary="" cellpadding="3" cellspacing="0" >
319 1349 Luisehahne
		<tr>
320 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>
321 1349 Luisehahne
		</tr>
322
		<tr>
323 1608 Luisehahne
			<td class="name">
324 1349 Luisehahne
				Absolute URL:
325
			</td>
326 1608 Luisehahne
			<td class="value">
327 1349 Luisehahne
				<?php
328
				// Try to guess installation URL
329
				$guessed_url = 'http://'.$_SERVER["SERVER_NAME"].$_SERVER["SCRIPT_NAME"];
330
				$guessed_url = rtrim(dirname($guessed_url), 'install');
331
				?>
332
				<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; } ?>" />
333
			</td>
334
		</tr>
335
		<tr>
336 1608 Luisehahne
			<td class="name">
337 1349 Luisehahne
				Default Timezone:
338
			</td>
339
			<td>
340
				<select <?php echo field_error('default_timezone');?> tabindex="3" name="default_timezone" style="width: 100%;">
341 2104 darkviper
<?php
342
/*
343
 build list of TimeZone options
344
*/
345
    $aZones = array(-12,-11,-10,-9,-8,-7,-6,-5,-4,-3.5,-3,-2,-1,0,1,2,3,3.5,4,4.5,5,5.5,6,6.5,7,8,9,9.5,10,11,12,13);
346
    $sOutput = PHP_EOL;
347
    foreach($aZones as $fOffset) {
348
        $sItemTitle = 'GMT '.(($fOffset>0)?'+':'').(($fOffset==0)?'':(string)$fOffset.' Hours');
349
        $sOutput .= '<option value="'.(string)$fOffset.'"';
350
        if (
351
            (isset($_SESSION['default_timezone']) AND $_SESSION['default_timezone'] == (string)$fOffset) ||
352
            (!isset($_SESSION['default_timezone']) AND $fOffset == 0)
353
        ) {
354
            $sOutput .= ' selected="selected"';
355
        }
356
        $sOutput .= '>'.$sItemTitle.'</option>'.PHP_EOL;
357
    }
358
// output Timezone options
359
    echo $sOutput;
360
?>
361 1349 Luisehahne
				</select>
362
			</td>
363
		</tr>
364
		<tr>
365 1608 Luisehahne
			<td class="name">
366 1349 Luisehahne
				Default Language:
367
			</td>
368
			<td>
369
				<select <?php echo field_error('default_language');?> tabindex="3" name="default_language" style="width: 100%;">
370 2104 darkviper
<?php
371
/*
372
 Find all available languages in /language/ folder and build option list from
373
*/
374
    $sLangDir = str_replace('\\', '/', dirname(__DIR__).'/languages/');
375
    $aAvailableLanguages = InstallHelper::getAvailableLanguages($sLangDir);
376
    $sOutput = PHP_EOL;
377
    foreach ($aAvailableLanguages as $sLangCode => $sLangName) {
378
        $sOutput .= '<option value="'.$sLangCode.'"';
379
        if (
380
            (isset($_SESSION['default_language']) AND $_SESSION['default_language'] == $sLangCode) ||
381
            (!isset($_SESSION['default_language']) AND $sLangCode == 'EN')
382
        ) {
383
            $sOutput .= ' selected="selected"';
384
        }
385
        $sOutput .= '>'.$sLangName.'</option>'.PHP_EOL;
386
    }
387
// output Language options
388
    echo $sOutput;
389
?>
390 1349 Luisehahne
				</select>
391
			</td>
392
		</tr>
393 1884 Luisehahne
		<tr>
394
			<td style="line-height: 0.4em;" colspan="2">&nbsp;</td>
395
		</tr>
396 1349 Luisehahne
		</table>
397 1608 Luisehahne
		<table border="0" summary="" cellpadding="0" cellspacing="0">
398 1349 Luisehahne
		<tr>
399 1608 Luisehahne
			<td class="step-row" colspan="3"><h1 class="step-row">Step 4</h1>&nbsp;Please specify your operating system information below...</td>
400 1349 Luisehahne
		</tr>
401
		<tr>
402 1608 Luisehahne
			<td class="name">&nbsp;
403 1349 Luisehahne
				Server Operating System:
404
			</td>
405 1737 Luisehahne
			<td style="<?php echo $operating_system ?>">
406
				<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"'; } ?> />
407
				<span style="cursor: pointer;" onclick="javascript:change_os('linux');">Linux/Unix based</span>
408 1349 Luisehahne
				<br />
409 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"'; } ?> />
410
				<span style="cursor: pointer;" onclick="javascript:change_os('windows');">Windows</span>
411 1349 Luisehahne
			</td>
412 1608 Luisehahne
		</tr>
413
		<tr>
414
			<td class="name">&nbsp;</td>
415
			<td class="value">
416
				<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'; } ?>;">
417
					<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'; } ?> />
418
 					<label style=" margin: 0;  " for="world_writeable">
419 1349 Luisehahne
						World-writeable file permissions (777)
420
					</label>
421 1608 Luisehahne
				<br />
422
					<p class="warning">(Please note: only recommended for testing environments)</p>
423 1349 Luisehahne
				</div>
424
			</td>
425
		</tr>
426 1884 Luisehahne
		<tr>
427
			<td style="line-height: 0.4em;" colspan="2">&nbsp;</td>
428
		</tr>
429 1349 Luisehahne
		</table>
430 1608 Luisehahne
		<table summary="" cellpadding="0" cellspacing="0">
431 1349 Luisehahne
    		<tr>
432 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>
433 1349 Luisehahne
    		</tr>
434
    		<tr>
435 1608 Luisehahne
    			<td class="name">Host Name</td>
436
    			<td class="value">
437
    				<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'; } ?>" />
438 1349 Luisehahne
    			</td>
439
    		</tr>
440
    		<tr>
441 1608 Luisehahne
    			<td class="name">Database Name&nbsp;([a-zA-Z0-9_-])</td>
442
    			<td class="value">
443
    				<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'; } ?>" />
444 1349 Luisehahne
    			</td>
445
    		</tr>
446
		<tr>
447 1608 Luisehahne
			<td class="name">Table Prefix&nbsp;([a-zA-Z0-9_])</td>
448
			<td class="value">
449 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_'; } ?>" />
450 1349 Luisehahne
			</td>
451 1608 Luisehahne
		</tr>
452
		<tr>
453
    			<td class="name">Username:</td>
454
    			<td class="value">
455 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'; } ?>" />
456 1608 Luisehahne
    			</td>
457
		</tr>
458
		<tr>
459
    			<td class="name">Password:</td>
460
    			<td class="value">
461 1614 Luisehahne
    				<input type="password" tabindex="11" name="database_password" value="<?php if(isset($_SESSION['database_password'])) { echo $_SESSION['database_password']; } ?>" />
462 1608 Luisehahne
    			</td>
463
		</tr>
464
		<tr>
465
			<td class="name hide" colspan="2">
466 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"'; } ?> />
467
				<label for="install_tables" style="color: #666666;">Install Tables</label>
468
				<br />
469 1608 Luisehahne
				<span style="font-size: 1px; color: #666666;">(Please note: May remove existing tables and data)</span>
470 1349 Luisehahne
			</td>
471
		</tr>
472 1884 Luisehahne
		<tr>
473
			<td style="line-height: 0.4em;" colspan="2">&nbsp;</td>
474
		</tr>
475 1608 Luisehahne
		</table>
476
		<table summary="" cellpadding="0" cellspacing="0" >
477
		<tbody>
478 1349 Luisehahne
		<tr>
479 1608 Luisehahne
			<td colspan="2" class="step-row"><h1 class="step-row">Step 6</h1>&nbsp;Please enter your website title below...</td>
480 1349 Luisehahne
		</tr>
481
		<tr>
482 1608 Luisehahne
			<td class="name">Website Title:</td>
483
			<td class="value">
484
				<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'; } ?>" />
485 1349 Luisehahne
			</td>
486
		</tr>
487 1884 Luisehahne
		<tr>
488
			<td style="line-height: 0.4em;" colspan="2">&nbsp;</td>
489
		</tr>
490 1608 Luisehahne
		</tbody>
491
		</table>
492
		<table summary="" cellpadding="0" cellspacing="0" border="0">
493 1349 Luisehahne
		<tr>
494 1608 Luisehahne
			<td colspan="2" class="step-row"><h1 class="step-row">Step 7</h1> Please enter your Administrator account details below...</td>
495 1349 Luisehahne
		</tr>
496
		<tr>
497 1608 Luisehahne
			<td class="name">Loginname:</td>
498
			<td class="value">
499
				<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'; } ?>" />
500 1349 Luisehahne
			</td>
501 1608 Luisehahne
		</tr>
502
		<tr>
503
			<td class="name">Email:</td>
504
			<td class="value">
505
				<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']; } ?>" />
506 1349 Luisehahne
			</td>
507
		</tr>
508
		<tr>
509 1608 Luisehahne
			<td class="name">Password:</td>
510
			<td class="value">
511 2095 darkviper
				<input <?php echo field_error('admin_password');?> type="password" maxlength="30" tabindex="16" name="admin_password" value="" />
512 1349 Luisehahne
			</td>
513
		</tr>
514
		<tr>
515 1608 Luisehahne
			<td class="name">Re-Password:</td>
516
			<td class="value">
517 2095 darkviper
				<input <?php echo field_error('admin_repassword');?> type="password" maxlength="30" tabindex="17" name="admin_repassword" value=""  />
518 1608 Luisehahne
			</td>
519 1349 Luisehahne
		</tr>
520 1884 Luisehahne
		<tr>
521
			<td style="line-height: 0.4em;" colspan="2">&nbsp;</td>
522
		</tr>
523 1608 Luisehahne
		</table>
524 1886 Luisehahne
<?php } ?>
525
526 1608 Luisehahne
		<table summary="" cellpadding="0" cellspacing="0">
527 1349 Luisehahne
				<tr valign="top">
528 1608 Luisehahne
					<td><strong>Please note: &nbsp;</strong></td>
529
				</tr>
530
				<tr valign="top">
531 1349 Luisehahne
					<td>
532 1608 Luisehahne
						<p class="warning">
533 1609 Luisehahne
						WebsiteBaker is released under the
534 1349 Luisehahne
						<a href="http://www.gnu.org/licenses/gpl.html" target="_blank" tabindex="19">GNU General Public License</a>
535
						<br />
536
						By clicking install, you are accepting the license.
537 1608 Luisehahne
						</p>
538 1349 Luisehahne
					</td>
539
				</tr>
540 1608 Luisehahne
				<tr valign="top">
541
			<td>
542
			<p class="center">
543 1529 Luisehahne
				<?php if($installFlag == true) { ?>
544 1608 Luisehahne
				<input type="submit" tabindex="20" name="install" value="Install WebsiteBaker" />
545 1529 Luisehahne
				<?php } else { ?>
546 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'] ?>';" />
547 1529 Luisehahne
				<?php } ?>
548 1608 Luisehahne
			</p>
549 1349 Luisehahne
			</td>
550
		</tr>
551
		</table>
552
553
</form>
554
555 1608 Luisehahne
	<div style="padding: 10px 0px 10px 0px; text-align:center;">
556 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. -->
557 1614 Luisehahne
		<a href="http://www.websitebaker.org/" style="color: #000000;" target="_blank">WebsiteBaker</a>
558 1349 Luisehahne
		is	released under the
559
		<a href="http://www.gnu.org/licenses/gpl.html" style="color: #000000;" target="_blank">GNU General Public License</a>
560
		<!-- 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. -->
561 1608 Luisehahne
	</div >
562
</div>
563 1349 Luisehahne
564
</body>
565
</html>