| 1 | 1349 | Luisehahne | <?php
 | 
      
        | 2 |  |  | /**
 | 
      
        | 3 |  |  |  *
 | 
      
        | 4 |  |  |  * @category        backend
 | 
      
        | 5 |  |  |  * @package         install
 | 
      
        | 6 |  |  |  * @author          WebsiteBaker Project
 | 
      
        | 7 | 1609 | Luisehahne |  * @copyright       2009-2012, WebsiteBaker Org. e.V.
 | 
      
        | 8 | 1614 | Luisehahne |  * @link			http://www.websitebaker.org/
 | 
      
        | 9 | 1349 | Luisehahne |  * @license         http://www.gnu.org/licenses/gpl.html
 | 
      
        | 10 |  |  |  * @platform        WebsiteBaker 2.8.x
 | 
      
        | 11 | 1374 | Luisehahne |  * @requirements    PHP 5.2.2 and higher
 | 
      
        | 12 | 1349 | Luisehahne |  * @version      	$Id$
 | 
      
        | 13 |  |  |  * @filesource		$HeadURL$
 | 
      
        | 14 |  |  |  * @lastmodified    $Date$
 | 
      
        | 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 | 1530 | Luisehahne | $mod_path = dirname(str_replace('\\', '/', __FILE__));
 | 
      
        | 26 | 1533 | Luisehahne | $doc_root = rtrim(realpath($_SERVER['DOCUMENT_ROOT']),'/');
 | 
      
        | 27 | 1530 | Luisehahne | $mod_name = basename($mod_path);
 | 
      
        | 28 | 1533 | Luisehahne | $wb_path = dirname(dirname(realpath( __FILE__)));
 | 
      
        | 29 | 1530 | Luisehahne | $wb_root = str_replace(realpath($doc_root),'',$wb_path);
 | 
      
        | 30 |  |  | 
 | 
      
        | 31 | 1349 | Luisehahne | // 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 | 1529 | Luisehahne | $installFlag = true;
 | 
      
        | 40 | 1349 | Luisehahne | // 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 | 1529 | Luisehahne | 	} else {
 | 
      
        | 52 |  |  | 		$installFlag = false;
 | 
      
        | 53 | 1349 | Luisehahne | 		$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 | 1737 | Luisehahne | $sapi_type = php_sapi_name();
 | 
      
        | 72 |  |  | 
 | 
      
        | 73 |  |  | if(!isset($_SESSION['operating_system'])) {
 | 
      
        | 74 |  |  |     $operating_system = ((strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? 'windows' : 'linux');
 | 
      
        | 75 |  |  | } else {
 | 
      
        | 76 |  |  |     $operating_system = $_SESSION['operating_system'];
 | 
      
        | 77 |  |  | }
 | 
      
        | 78 | 1529 | Luisehahne | ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 | 
      
        | 79 | 1349 | Luisehahne | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 | 
      
        | 80 |  |  | <head>
 | 
      
        | 81 | 1609 | Luisehahne | <title>WebsiteBaker Installation Wizard</title>
 | 
      
        | 82 | 1349 | Luisehahne | <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
 | 
      
        | 83 |  |  | <link href="stylesheet.css" rel="stylesheet" type="text/css" />
 | 
      
        | 84 | 1737 | Luisehahne | <script type="text/javascript">
 | 
      
        | 85 | 1349 | Luisehahne | 
 | 
      
        | 86 |  |  | function confirm_link(message, url) {
 | 
      
        | 87 |  |  | 	if(confirm(message)) location.href = url;
 | 
      
        | 88 |  |  | }
 | 
      
        | 89 |  |  | function change_os(type) {
 | 
      
        | 90 |  |  | 	if(type == 'linux') {
 | 
      
        | 91 |  |  | 		document.getElementById('operating_system_linux').checked = true;
 | 
      
        | 92 |  |  | 		document.getElementById('operating_system_windows').checked = false;
 | 
      
        | 93 | 1608 | Luisehahne | 		document.getElementById('file_perms_box').style.display = 'none';
 | 
      
        | 94 | 1349 | Luisehahne | 	} else if(type == 'windows') {
 | 
      
        | 95 |  |  | 		document.getElementById('operating_system_linux').checked = false;
 | 
      
        | 96 |  |  | 		document.getElementById('operating_system_windows').checked = true;
 | 
      
        | 97 |  |  | 		document.getElementById('file_perms_box').style.display = 'none';
 | 
      
        | 98 |  |  | 	}
 | 
      
        | 99 |  |  | }
 | 
      
        | 100 |  |  | </script>
 | 
      
        | 101 |  |  | </head>
 | 
      
        | 102 |  |  | <body>
 | 
      
        | 103 | 1608 | Luisehahne | <div class="body">
 | 
      
        | 104 |  |  | <table summary="" cellpadding="0" cellspacing="0">
 | 
      
        | 105 |  |  | <tr style="background: #a9c9ea;">
 | 
      
        | 106 |  |  | 	<td valign="top">
 | 
      
        | 107 | 1349 | Luisehahne | 		<img src="../templates/wb_theme/images/logo.png" alt="Logo" />
 | 
      
        | 108 |  |  | 	</td>
 | 
      
        | 109 | 1529 | Luisehahne | 	<td>
 | 
      
        | 110 |  |  | 		<h1 style="border:none; margin-top:1em;font-size:150%;">Installation Wizard</h1>
 | 
      
        | 111 | 1349 | Luisehahne | 	</td>
 | 
      
        | 112 |  |  | </tr>
 | 
      
        | 113 |  |  | </table>
 | 
      
        | 114 |  |  | 
 | 
      
        | 115 |  |  | <form name="website_baker_installation_wizard" action="save.php" method="post">
 | 
      
        | 116 |  |  | <input type="hidden" name="url" value="" />
 | 
      
        | 117 |  |  | <input type="hidden" name="username_fieldname" value="admin_username" />
 | 
      
        | 118 |  |  | <input type="hidden" name="password_fieldname" value="admin_password" />
 | 
      
        | 119 |  |  | <input type="hidden" name="remember" id="remember" value="true" />
 | 
      
        | 120 |  |  | 
 | 
      
        | 121 | 1608 | Luisehahne | 		<div style="padding: 5px; text-align: center; font-weight: bold;">
 | 
      
        | 122 | 1609 | Luisehahne | 			Welcome to the WebsiteBaker Installation Wizard.
 | 
      
        | 123 | 1608 | Luisehahne | 		</div>
 | 
      
        | 124 | 1349 | Luisehahne | 		<?php
 | 
      
        | 125 |  |  | 		if(isset($_SESSION['message']) AND $_SESSION['message'] != '') {
 | 
      
        | 126 | 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
 | 
      
        | 127 | 1349 | Luisehahne | 		}
 | 
      
        | 128 |  |  | 		?>
 | 
      
        | 129 | 1608 | Luisehahne | 		<table summary="" cellpadding="0" cellspacing="0" border="0">
 | 
      
        | 130 | 1349 | Luisehahne | 		<tr>
 | 
      
        | 131 | 1608 | Luisehahne | 			<td colspan="6" class="step-row"><h1 class="step-row">Step 1</h1> Please check the following requirements are met before continuing...</td>
 | 
      
        | 132 | 1349 | Luisehahne | 		</tr>
 | 
      
        | 133 |  |  | 		<?php if($session_support != '<font class="good">Enabled</font>') { ?>
 | 
      
        | 134 |  |  | 		<tr>
 | 
      
        | 135 | 1608 | Luisehahne | 			<td colspan="6" class="error">Please note: PHP Session Support may appear disabled if your browser does not support cookies.</td>
 | 
      
        | 136 | 1349 | Luisehahne | 		</tr>
 | 
      
        | 137 |  |  | 		<?php } ?>
 | 
      
        | 138 |  |  | 		<tr>
 | 
      
        | 139 | 1608 | Luisehahne | 			<td style="color: #666666;">PHP Version > 5.2.1</td>
 | 
      
        | 140 |  |  | 			<td>
 | 
      
        | 141 | 1349 | Luisehahne | 				<?php
 | 
      
        | 142 | 1544 | Luisehahne | 			   if (version_compare(PHP_VERSION, '5.2.1', '>'))
 | 
      
        | 143 | 1349 | Luisehahne | 			   {
 | 
      
        | 144 |  |  | 					?><font class="good">Yes</font><?php
 | 
      
        | 145 |  |  | 				} else {
 | 
      
        | 146 | 1529 | Luisehahne | 					$installFlag = false;
 | 
      
        | 147 | 1349 | Luisehahne | 					?><font class="bad">No</font><?php
 | 
      
        | 148 |  |  | 				}
 | 
      
        | 149 |  |  | 				?>
 | 
      
        | 150 |  |  | 			</td>
 | 
      
        | 151 | 1608 | Luisehahne | 			<td style="color: #666666;">PHP Session Support</td>
 | 
      
        | 152 |  |  | 			<td><?php echo $session_support; ?></td>
 | 
      
        | 153 | 1349 | Luisehahne | 		</tr>
 | 
      
        | 154 | 1565 | Luisehahne | 	<tr>
 | 
      
        | 155 | 1608 | Luisehahne | 		<td style="color: #666666;">Server DefaultCharset</td>
 | 
      
        | 156 |  |  | 			<td>
 | 
      
        | 157 | 1349 | Luisehahne | 				<?php
 | 
      
        | 158 | 1565 | Luisehahne | 					$chrval = (($e_adc != '') && (strtolower($e_adc) != 'utf-8') ? true : false);
 | 
      
        | 159 |  |  | 					if($chrval == false) {
 | 
      
        | 160 |  |  | 						?><font class="good">
 | 
      
        | 161 |  |  | 						<?php echo (($e_adc=='') ? 'OK' : $e_adc) ?>
 | 
      
        | 162 |  |  | 						</font>
 | 
      
        | 163 |  |  | 						<?php
 | 
      
        | 164 | 1349 | Luisehahne | 					} else {
 | 
      
        | 165 | 1565 | Luisehahne | 						?><font class="bad"><?php echo $e_adc ?></font><?php
 | 
      
        | 166 | 1349 | Luisehahne | 					}
 | 
      
        | 167 | 1565 | Luisehahne | 
 | 
      
        | 168 | 1349 | Luisehahne | 				?>
 | 
      
        | 169 |  |  | 			</td>
 | 
      
        | 170 | 1608 | Luisehahne | 			<td style="color: #666666;">PHP Safe Mode</td>
 | 
      
        | 171 |  |  | 			<td>
 | 
      
        | 172 |  |  | 				<?php
 | 
      
        | 173 |  |  | 				if(ini_get('safe_mode')=='' || strpos(strtolower(ini_get('safe_mode')), 'off')!==FALSE || ini_get('safe_mode')==0) {
 | 
      
        | 174 |  |  | 					?><font class="good">Disabled</font><?php
 | 
      
        | 175 |  |  | 				} else {
 | 
      
        | 176 |  |  | 					$installFlag = false;
 | 
      
        | 177 |  |  | 					?><font class="bad">Enabled</font><?php
 | 
      
        | 178 |  |  | 				}
 | 
      
        | 179 |  |  | 				?>
 | 
      
        | 180 |  |  | 			</td>
 | 
      
        | 181 | 1349 | Luisehahne | 		</tr>
 | 
      
        | 182 | 1565 | Luisehahne | 		<?php if($chrval == true) {
 | 
      
        | 183 | 1529 | Luisehahne | 		?>
 | 
      
        | 184 | 1349 | Luisehahne | 		<tr>
 | 
      
        | 185 | 1565 | Luisehahne | 			<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 | 1608 | Luisehahne | </tr>
 | 
      
        | 194 |  |  | <?php } ?>
 | 
      
        | 195 |  |  | </table>
 | 
      
        | 196 |  |  | <table summary="" cellpadding="3" cellspacing="0">
 | 
      
        | 197 |  |  | <tr>
 | 
      
        | 198 | 1654 | Luisehahne | 	<td colspan="6" class="step-row"><h1 class="step-row">Step 2</h1> Please check the following files/folders are writeable before continuing...</td>
 | 
      
        | 199 | 1608 | Luisehahne | </tr>
 | 
      
        | 200 | 1529 | Luisehahne | <?php
 | 
      
        | 201 | 1530 | Luisehahne | 	$config = '<font class="good">Writeable</font>';
 | 
      
        | 202 | 1540 | Luisehahne | 	$config_content = "<?php\n";
 | 
      
        | 203 | 1530 | Luisehahne | 	$configFile = '/config.php';
 | 
      
        | 204 | 1540 | Luisehahne | 	if(!isset($_SESSION['config_rename']) )
 | 
      
        | 205 |  |  | 	{
 | 
      
        | 206 | 1543 | Luisehahne | // cnfig.php or config.php.new
 | 
      
        | 207 | 1540 | Luisehahne | 		if( (file_exists($wb_path.$configFile)==true))
 | 
      
        | 208 |  |  | 		{
 | 
      
        | 209 | 1543 | Luisehahne | // next operation only if file is writeable
 | 
      
        | 210 |  |  | 			if(is_writeable($wb_path.$configFile))
 | 
      
        | 211 | 1540 | Luisehahne | 			{
 | 
      
        | 212 | 1543 | Luisehahne | // already installed? it's not empty
 | 
      
        | 213 |  |  | 				if ( filesize($wb_path.$configFile) > 128)
 | 
      
        | 214 |  |  | 				{
 | 
      
        | 215 | 1540 | Luisehahne | 					$installFlag = false;
 | 
      
        | 216 | 1654 | Luisehahne | 					$config = '<font class="bad">Already installed? Check!</font>';
 | 
      
        | 217 | 1543 | Luisehahne | // try to open and to write
 | 
      
        | 218 |  |  | 				} elseif( !$handle = fopen($wb_path.$configFile, 'w') )
 | 
      
        | 219 |  |  | 				{
 | 
      
        | 220 |  |  | 					$installFlag = false;
 | 
      
        | 221 | 1540 | Luisehahne | 	                $config = '<font class="bad">Not Writeable</font>';
 | 
      
        | 222 |  |  | 				} else {
 | 
      
        | 223 | 1543 | Luisehahne | 					if (fwrite($handle, $config_content) === FALSE) {
 | 
      
        | 224 |  |  | 						$installFlag = false;
 | 
      
        | 225 |  |  | 		                $config = '<font class="bad">Not Writeable</font>';
 | 
      
        | 226 |  |  | 					} else {
 | 
      
        | 227 |  |  | 						$config = '<font class="good">Writeable</font>';
 | 
      
        | 228 |  |  | 						$_SESSION['config_rename'] = true;
 | 
      
        | 229 |  |  | 					}
 | 
      
        | 230 |  |  | 					// Close file
 | 
      
        | 231 |  |  | 					fclose($handle);
 | 
      
        | 232 |  |  | 					}
 | 
      
        | 233 |  |  | 			} else {
 | 
      
        | 234 |  |  | 				$installFlag = false;
 | 
      
        | 235 |  |  |                 $config = '<font class="bad">Not Writeable</font>';
 | 
      
        | 236 |  |  | 			}
 | 
      
        | 237 |  |  | // it's config.php.new
 | 
      
        | 238 | 1540 | Luisehahne | 		} elseif((file_exists($wb_path.'/config.php.new')==true))
 | 
      
        | 239 |  |  | 		{
 | 
      
        | 240 | 1529 | Luisehahne | 			$configFile = '/config.php.new';
 | 
      
        | 241 |  |  | 			$installFlag = false;
 | 
      
        | 242 | 1530 | Luisehahne | 			$config = '<font class="bad">Please rename</font>';
 | 
      
        | 243 | 1540 | Luisehahne | 		} else
 | 
      
        | 244 |  |  | 		{
 | 
      
        | 245 |  |  | 			$installFlag = false;
 | 
      
        | 246 |  |  | 			$config = '<font class="bad">Missing!!?</font>';
 | 
      
        | 247 | 1529 | Luisehahne | 		}
 | 
      
        | 248 |  |  | 	}
 | 
      
        | 249 |  |  | ?>
 | 
      
        | 250 | 1608 | Luisehahne | 		<tr>
 | 
      
        | 251 | 1654 | Luisehahne | 			<td colspan="2" style="color: #666666;"><?php print $wb_root.$configFile ?></td>
 | 
      
        | 252 |  |  | 			<td><?php echo $config ?></td>
 | 
      
        | 253 |  |  | 			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>/pages/</td>
 | 
      
        | 254 |  |  | 			<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>
 | 
      
        | 255 | 1349 | Luisehahne | 		</tr>
 | 
      
        | 256 |  |  | 		<tr>
 | 
      
        | 257 | 1654 | Luisehahne | 			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>/media/</td>
 | 
      
        | 258 | 1608 | 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>
 | 
      
        | 259 | 1654 | Luisehahne | 			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>/templates/</td>
 | 
      
        | 260 | 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>
 | 
      
        | 261 |  |  | 		</tr>
 | 
      
        | 262 |  |  | 		<tr>
 | 
      
        | 263 | 1654 | Luisehahne | 			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>/modules/</td>
 | 
      
        | 264 | 1529 | 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>
 | 
      
        | 265 | 1654 | Luisehahne | 			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>/languages/</td>
 | 
      
        | 266 | 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>
 | 
      
        | 267 | 1654 | Luisehahne | 		</tr>
 | 
      
        | 268 |  |  | 		<tr>
 | 
      
        | 269 |  |  | 			<td colspan="2" style="color: #666666;"><?php print $wb_root ?>/temp/</td>
 | 
      
        | 270 | 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>
 | 
      
        | 271 | 1654 | Luisehahne | 			<td colspan="2"> </td>
 | 
      
        | 272 | 1349 | Luisehahne | 			<td> </td>
 | 
      
        | 273 |  |  | 		</tr>
 | 
      
        | 274 |  |  | 		</table>
 | 
      
        | 275 | 1608 | Luisehahne | 		<table summary="" cellpadding="3" cellspacing="0" >
 | 
      
        | 276 | 1349 | Luisehahne | 		<tr>
 | 
      
        | 277 | 1608 | Luisehahne | 			<td colspan="2" class="step-row"><h1 class="step-row">Step 3</h1> Please check URL settings, and select a default timezone and a default backend language...</td>
 | 
      
        | 278 | 1349 | Luisehahne | 		</tr>
 | 
      
        | 279 |  |  | 		<tr>
 | 
      
        | 280 | 1608 | Luisehahne | 			<td class="name">
 | 
      
        | 281 | 1349 | Luisehahne | 				Absolute URL:
 | 
      
        | 282 |  |  | 			</td>
 | 
      
        | 283 | 1608 | Luisehahne | 			<td class="value">
 | 
      
        | 284 | 1349 | Luisehahne | 				<?php
 | 
      
        | 285 |  |  | 				// Try to guess installation URL
 | 
      
        | 286 |  |  | 				$guessed_url = 'http://'.$_SERVER["SERVER_NAME"].$_SERVER["SCRIPT_NAME"];
 | 
      
        | 287 |  |  | 				$guessed_url = rtrim(dirname($guessed_url), 'install');
 | 
      
        | 288 |  |  | 				?>
 | 
      
        | 289 |  |  | 				<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; } ?>" />
 | 
      
        | 290 |  |  | 			</td>
 | 
      
        | 291 |  |  | 		</tr>
 | 
      
        | 292 |  |  | 		<tr>
 | 
      
        | 293 | 1608 | Luisehahne | 			<td class="name">
 | 
      
        | 294 | 1349 | Luisehahne | 				Default Timezone:
 | 
      
        | 295 |  |  | 			</td>
 | 
      
        | 296 |  |  | 			<td>
 | 
      
        | 297 |  |  | 				<select <?php echo field_error('default_timezone');?> tabindex="3" name="default_timezone" style="width: 100%;">
 | 
      
        | 298 |  |  | 					<?php
 | 
      
        | 299 |  |  | 					$TIMEZONES['-12'] = 'GMT - 12 Hours';
 | 
      
        | 300 |  |  | 					$TIMEZONES['-11'] = 'GMT -11 Hours';
 | 
      
        | 301 |  |  | 					$TIMEZONES['-10'] = 'GMT -10 Hours';
 | 
      
        | 302 |  |  | 					$TIMEZONES['-9'] = 'GMT -9 Hours';
 | 
      
        | 303 |  |  | 					$TIMEZONES['-8'] = 'GMT -8 Hours';
 | 
      
        | 304 |  |  | 					$TIMEZONES['-7'] = 'GMT -7 Hours';
 | 
      
        | 305 |  |  | 					$TIMEZONES['-6'] = 'GMT -6 Hours';
 | 
      
        | 306 |  |  | 					$TIMEZONES['-5'] = 'GMT -5 Hours';
 | 
      
        | 307 |  |  | 					$TIMEZONES['-4'] = 'GMT -4 Hours';
 | 
      
        | 308 |  |  | 					$TIMEZONES['-3.5'] = 'GMT -3.5 Hours';
 | 
      
        | 309 |  |  | 					$TIMEZONES['-3'] = 'GMT -3 Hours';
 | 
      
        | 310 |  |  | 					$TIMEZONES['-2'] = 'GMT -2 Hours';
 | 
      
        | 311 |  |  | 					$TIMEZONES['-1'] = 'GMT -1 Hour';
 | 
      
        | 312 |  |  | 					$TIMEZONES['0'] = 'GMT';
 | 
      
        | 313 |  |  | 					$TIMEZONES['1'] = 'GMT +1 Hour';
 | 
      
        | 314 |  |  | 					$TIMEZONES['2'] = 'GMT +2 Hours';
 | 
      
        | 315 |  |  | 					$TIMEZONES['3'] = 'GMT +3 Hours';
 | 
      
        | 316 |  |  | 					$TIMEZONES['3.5'] = 'GMT +3.5 Hours';
 | 
      
        | 317 |  |  | 					$TIMEZONES['4'] = 'GMT +4 Hours';
 | 
      
        | 318 |  |  | 					$TIMEZONES['4.5'] = 'GMT +4.5 Hours';
 | 
      
        | 319 |  |  | 					$TIMEZONES['5'] = 'GMT +5 Hours';
 | 
      
        | 320 |  |  | 					$TIMEZONES['5.5'] = 'GMT +5.5 Hours';
 | 
      
        | 321 |  |  | 					$TIMEZONES['6'] = 'GMT +6 Hours';
 | 
      
        | 322 |  |  | 					$TIMEZONES['6.5'] = 'GMT +6.5 Hours';
 | 
      
        | 323 |  |  | 					$TIMEZONES['7'] = 'GMT +7 Hours';
 | 
      
        | 324 |  |  | 					$TIMEZONES['8'] = 'GMT +8 Hours';
 | 
      
        | 325 |  |  | 					$TIMEZONES['9'] = 'GMT +9 Hours';
 | 
      
        | 326 |  |  | 					$TIMEZONES['9.5'] = 'GMT +9.5 Hours';
 | 
      
        | 327 |  |  | 					$TIMEZONES['10'] = 'GMT +10 Hours';
 | 
      
        | 328 |  |  | 					$TIMEZONES['11'] = 'GMT +11 Hours';
 | 
      
        | 329 |  |  | 					$TIMEZONES['12'] = 'GMT +12 Hours';
 | 
      
        | 330 |  |  | 					$TIMEZONES['13'] = 'GMT +13 Hours';
 | 
      
        | 331 |  |  | 					foreach($TIMEZONES AS $hour_offset => $title) {
 | 
      
        | 332 |  |  | 						?>
 | 
      
        | 333 |  |  | 							<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>
 | 
      
        | 334 |  |  | 						<?php
 | 
      
        | 335 |  |  | 					}
 | 
      
        | 336 |  |  | 					?>
 | 
      
        | 337 |  |  | 				</select>
 | 
      
        | 338 |  |  | 			</td>
 | 
      
        | 339 |  |  | 		</tr>
 | 
      
        | 340 |  |  | 		<tr>
 | 
      
        | 341 | 1608 | Luisehahne | 			<td class="name">
 | 
      
        | 342 | 1349 | Luisehahne | 				Default Language:
 | 
      
        | 343 |  |  | 			</td>
 | 
      
        | 344 |  |  | 			<td>
 | 
      
        | 345 |  |  | 				<select <?php echo field_error('default_language');?> tabindex="3" name="default_language" style="width: 100%;">
 | 
      
        | 346 |  |  | 					<?php
 | 
      
        | 347 | 1737 | Luisehahne |                 	$sAutoLanguage = 'EN'; // default, if no information from client available
 | 
      
        | 348 |  |  |                 	if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
 | 
      
        | 349 |  |  |                 		if(preg_match('/([a-z]{2})(?:-[a-z]{2})*/i', strtolower($_SERVER['HTTP_ACCEPT_LANGUAGE']), $matches)) {
 | 
      
        | 350 |  |  |                 			$sAutoLanguage = strtoupper($matches[1]);
 | 
      
        | 351 |  |  |                 		}
 | 
      
        | 352 |  |  |                 	}
 | 
      
        | 353 |  |  |                 	$sAutoLanguage = isset($_SESSION['default_language']) ? $_SESSION['default_language'] : $sAutoLanguage;
 | 
      
        | 354 | 1349 | Luisehahne | 					$DEFAULT_LANGUAGE = array(
 | 
      
        | 355 |  |  | 						'BG'=>'Bulgarian', 'CA'=>'Catalan', 'CS'=>'Čeština', 'DA'=>'Danish', 'DE'=>'Deutsch', 'EN'=>'English',
 | 
      
        | 356 |  |  | 						'ES'=>'Spanish', 'ET'=>'Eesti', 'FI'=>'Suomi', 'FR'=>'Français',
 | 
      
        | 357 |  |  | 						'HR'=>'Hrvatski', 'HU'=>'Magyar','IT'=>'Italiano', 'LV'=>'Latviesu',
 | 
      
        | 358 |  |  | 						'NL'=>'Nederlands', 'NO'=>'Norsk', 'PL'=>'Polski', 'PT'=>'Portuguese (Brazil)', 'RU'=>'Russian', 'SE'=>'Svenska','SK'=>'Slovensky','TR'=>'Turkish'
 | 
      
        | 359 |  |  | 					);
 | 
      
        | 360 |  |  | 					foreach($DEFAULT_LANGUAGE as $lang_id => $lang_title) {
 | 
      
        | 361 |  |  | 						?>
 | 
      
        | 362 | 1737 | Luisehahne | 							<option value="<?php echo $lang_id; ?>"<?php if($sAutoLanguage == $lang_id) { echo ' selected="selected"'; }  ?> ><?php echo $lang_title; ?></option>
 | 
      
        | 363 | 1349 | Luisehahne | 						<?php
 | 
      
        | 364 |  |  | 					}
 | 
      
        | 365 |  |  | 					?>
 | 
      
        | 366 |  |  | 				</select>
 | 
      
        | 367 |  |  | 			</td>
 | 
      
        | 368 |  |  | 		</tr>
 | 
      
        | 369 |  |  | 		</table>
 | 
      
        | 370 | 1608 | Luisehahne | 		<table border="0" summary="" cellpadding="0" cellspacing="0">
 | 
      
        | 371 | 1349 | Luisehahne | 		<tr>
 | 
      
        | 372 | 1608 | Luisehahne | 			<td class="step-row" colspan="3"><h1 class="step-row">Step 4</h1> Please specify your operating system information below...</td>
 | 
      
        | 373 | 1349 | Luisehahne | 		</tr>
 | 
      
        | 374 |  |  | 		<tr>
 | 
      
        | 375 | 1608 | Luisehahne | 			<td class="name"> 
 | 
      
        | 376 | 1349 | Luisehahne | 				Server Operating System:
 | 
      
        | 377 |  |  | 			</td>
 | 
      
        | 378 | 1737 | Luisehahne | 			<td style="<?php echo $operating_system ?>">
 | 
      
        | 379 |  |  | 				<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"'; } ?> />
 | 
      
        | 380 |  |  | 				<span style="cursor: pointer;" onclick="javascript:change_os('linux');">Linux/Unix based</span>
 | 
      
        | 381 | 1349 | Luisehahne | 				<br />
 | 
      
        | 382 | 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"'; } ?> />
 | 
      
        | 383 |  |  | 				<span style="cursor: pointer;" onclick="javascript:change_os('windows');">Windows</span>
 | 
      
        | 384 | 1349 | Luisehahne | 			</td>
 | 
      
        | 385 | 1608 | Luisehahne | 		</tr>
 | 
      
        | 386 |  |  | 		<tr>
 | 
      
        | 387 |  |  | 			<td class="name"> </td>
 | 
      
        | 388 |  |  | 			<td class="value">
 | 
      
        | 389 |  |  | 				<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'; } ?>;">
 | 
      
        | 390 |  |  | 					<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'; } ?> />
 | 
      
        | 391 |  |  |  					<label style=" margin: 0;  " for="world_writeable">
 | 
      
        | 392 | 1349 | Luisehahne | 						World-writeable file permissions (777)
 | 
      
        | 393 |  |  | 					</label>
 | 
      
        | 394 | 1608 | Luisehahne | 				<br />
 | 
      
        | 395 |  |  | 					<p class="warning">(Please note: only recommended for testing environments)</p>
 | 
      
        | 396 | 1349 | Luisehahne | 				</div>
 | 
      
        | 397 |  |  | 			</td>
 | 
      
        | 398 |  |  | 		</tr>
 | 
      
        | 399 |  |  | 		</table>
 | 
      
        | 400 | 1608 | Luisehahne | 		<table summary="" cellpadding="0" cellspacing="0">
 | 
      
        | 401 | 1349 | Luisehahne |     		<tr>
 | 
      
        | 402 | 1608 | Luisehahne |     			<td colspan="2" class="step-row"><h1 class="step-row">Step 5</h1> Please enter your MySQL database server details below...</td>
 | 
      
        | 403 | 1349 | Luisehahne |     		</tr>
 | 
      
        | 404 |  |  |     		<tr>
 | 
      
        | 405 | 1608 | Luisehahne |     			<td class="name">Host Name</td>
 | 
      
        | 406 |  |  |     			<td class="value">
 | 
      
        | 407 |  |  |     				<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'; } ?>" />
 | 
      
        | 408 | 1349 | Luisehahne |     			</td>
 | 
      
        | 409 |  |  |     		</tr>
 | 
      
        | 410 |  |  |     		<tr>
 | 
      
        | 411 | 1608 | Luisehahne |     			<td class="name">Database Name ([a-zA-Z0-9_-])</td>
 | 
      
        | 412 |  |  |     			<td class="value">
 | 
      
        | 413 |  |  |     				<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'; } ?>" />
 | 
      
        | 414 | 1349 | Luisehahne |     			</td>
 | 
      
        | 415 |  |  |     		</tr>
 | 
      
        | 416 |  |  | 		<tr>
 | 
      
        | 417 | 1608 | Luisehahne | 			<td class="name">Table Prefix ([a-zA-Z0-9_])</td>
 | 
      
        | 418 |  |  | 			<td class="value">
 | 
      
        | 419 | 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_'; } ?>" />
 | 
      
        | 420 | 1349 | Luisehahne | 			</td>
 | 
      
        | 421 | 1608 | Luisehahne | 		</tr>
 | 
      
        | 422 |  |  | 		<tr>
 | 
      
        | 423 |  |  |     			<td class="name">Username:</td>
 | 
      
        | 424 |  |  |     			<td class="value">
 | 
      
        | 425 | 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'; } ?>" />
 | 
      
        | 426 | 1608 | Luisehahne |     			</td>
 | 
      
        | 427 |  |  | 		</tr>
 | 
      
        | 428 |  |  | 		<tr>
 | 
      
        | 429 |  |  |     			<td class="name">Password:</td>
 | 
      
        | 430 |  |  |     			<td class="value">
 | 
      
        | 431 | 1614 | Luisehahne |     				<input type="password" tabindex="11" name="database_password" value="<?php if(isset($_SESSION['database_password'])) { echo $_SESSION['database_password']; } ?>" />
 | 
      
        | 432 | 1608 | Luisehahne |     			</td>
 | 
      
        | 433 |  |  | 		</tr>
 | 
      
        | 434 |  |  | 		<tr>
 | 
      
        | 435 |  |  | 			<td class="name hide" colspan="2">
 | 
      
        | 436 | 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"'; } ?> />
 | 
      
        | 437 |  |  | 				<label for="install_tables" style="color: #666666;">Install Tables</label>
 | 
      
        | 438 |  |  | 				<br />
 | 
      
        | 439 | 1608 | Luisehahne | 				<span style="font-size: 1px; color: #666666;">(Please note: May remove existing tables and data)</span>
 | 
      
        | 440 | 1349 | Luisehahne | 			</td>
 | 
      
        | 441 |  |  | 		</tr>
 | 
      
        | 442 | 1608 | Luisehahne | 		</table>
 | 
      
        | 443 |  |  | 		<table summary="" cellpadding="0" cellspacing="0" >
 | 
      
        | 444 |  |  | 		<tbody>
 | 
      
        | 445 | 1349 | Luisehahne | 		<tr>
 | 
      
        | 446 | 1608 | Luisehahne | 			<td colspan="2" class="step-row"><h1 class="step-row">Step 6</h1> Please enter your website title below...</td>
 | 
      
        | 447 | 1349 | Luisehahne | 		</tr>
 | 
      
        | 448 |  |  | 		<tr>
 | 
      
        | 449 | 1608 | Luisehahne | 			<td class="name">Website Title:</td>
 | 
      
        | 450 |  |  | 			<td class="value">
 | 
      
        | 451 |  |  | 				<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'; } ?>" />
 | 
      
        | 452 | 1349 | Luisehahne | 			</td>
 | 
      
        | 453 |  |  | 		</tr>
 | 
      
        | 454 | 1608 | Luisehahne | 		</tbody>
 | 
      
        | 455 |  |  | 		</table>
 | 
      
        | 456 |  |  | 		<table summary="" cellpadding="0" cellspacing="0" border="0">
 | 
      
        | 457 | 1349 | Luisehahne | 		<tr>
 | 
      
        | 458 | 1608 | Luisehahne | 			<td colspan="2" class="step-row"><h1 class="step-row">Step 7</h1> Please enter your Administrator account details below...</td>
 | 
      
        | 459 | 1349 | Luisehahne | 		</tr>
 | 
      
        | 460 |  |  | 		<tr>
 | 
      
        | 461 | 1608 | Luisehahne | 			<td class="name">Loginname:</td>
 | 
      
        | 462 |  |  | 			<td class="value">
 | 
      
        | 463 |  |  | 				<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'; } ?>" />
 | 
      
        | 464 | 1349 | Luisehahne | 			</td>
 | 
      
        | 465 | 1608 | Luisehahne | 		</tr>
 | 
      
        | 466 |  |  | 		<tr>
 | 
      
        | 467 |  |  | 			<td class="name">Email:</td>
 | 
      
        | 468 |  |  | 			<td class="value">
 | 
      
        | 469 |  |  | 				<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']; } ?>" />
 | 
      
        | 470 | 1349 | Luisehahne | 			</td>
 | 
      
        | 471 |  |  | 		</tr>
 | 
      
        | 472 |  |  | 		<tr>
 | 
      
        | 473 | 1608 | Luisehahne | 			<td class="name">Password:</td>
 | 
      
        | 474 |  |  | 			<td class="value">
 | 
      
        | 475 |  |  | 				<input <?php echo field_error('admin_password');?> type="password" tabindex="16" name="admin_password" value="" />
 | 
      
        | 476 | 1349 | Luisehahne | 			</td>
 | 
      
        | 477 |  |  | 		</tr>
 | 
      
        | 478 |  |  | 		<tr>
 | 
      
        | 479 | 1608 | Luisehahne | 			<td class="name">Re-Password:</td>
 | 
      
        | 480 |  |  | 			<td class="value">
 | 
      
        | 481 |  |  | 				<input <?php echo field_error('admin_repassword');?> type="password" tabindex="17" name="admin_repassword" value=""  />
 | 
      
        | 482 |  |  | 			</td>
 | 
      
        | 483 | 1349 | Luisehahne | 		</tr>
 | 
      
        | 484 | 1608 | Luisehahne | 		</table>
 | 
      
        | 485 |  |  | 		<table summary="" cellpadding="0" cellspacing="0">
 | 
      
        | 486 | 1349 | Luisehahne | 				<tr valign="top">
 | 
      
        | 487 | 1608 | Luisehahne | 					<td><strong>Please note:  </strong></td>
 | 
      
        | 488 |  |  | 				</tr>
 | 
      
        | 489 |  |  | 				<tr valign="top">
 | 
      
        | 490 | 1349 | Luisehahne | 					<td>
 | 
      
        | 491 | 1608 | Luisehahne | 						<p class="warning">
 | 
      
        | 492 | 1609 | Luisehahne | 						WebsiteBaker is released under the
 | 
      
        | 493 | 1349 | Luisehahne | 						<a href="http://www.gnu.org/licenses/gpl.html" target="_blank" tabindex="19">GNU General Public License</a>
 | 
      
        | 494 |  |  | 						<br />
 | 
      
        | 495 |  |  | 						By clicking install, you are accepting the license.
 | 
      
        | 496 | 1608 | Luisehahne | 						</p>
 | 
      
        | 497 | 1349 | Luisehahne | 					</td>
 | 
      
        | 498 |  |  | 				</tr>
 | 
      
        | 499 | 1608 | Luisehahne | 				<tr valign="top">
 | 
      
        | 500 |  |  | 			<td>
 | 
      
        | 501 |  |  | 			<p class="center">
 | 
      
        | 502 | 1529 | Luisehahne | 				<?php if($installFlag == true) { ?>
 | 
      
        | 503 | 1608 | Luisehahne | 				<input type="submit" tabindex="20" name="install" value="Install WebsiteBaker" />
 | 
      
        | 504 | 1529 | Luisehahne | 				<?php } else { ?>
 | 
      
        | 505 | 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'] ?>';" />
 | 
      
        | 506 | 1529 | Luisehahne | 				<?php } ?>
 | 
      
        | 507 | 1608 | Luisehahne | 			</p>
 | 
      
        | 508 | 1349 | Luisehahne | 			</td>
 | 
      
        | 509 |  |  | 		</tr>
 | 
      
        | 510 |  |  | 		</table>
 | 
      
        | 511 |  |  | 
 | 
      
        | 512 |  |  | </form>
 | 
      
        | 513 |  |  | 
 | 
      
        | 514 | 1608 | Luisehahne | 	<div style="padding: 10px 0px 10px 0px; text-align:center;">
 | 
      
        | 515 | 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. -->
 | 
      
        | 516 | 1614 | Luisehahne | 		<a href="http://www.websitebaker.org/" style="color: #000000;" target="_blank">WebsiteBaker</a>
 | 
      
        | 517 | 1349 | Luisehahne | 		is	released under the
 | 
      
        | 518 |  |  | 		<a href="http://www.gnu.org/licenses/gpl.html" style="color: #000000;" target="_blank">GNU General Public License</a>
 | 
      
        | 519 |  |  | 		<!-- 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. -->
 | 
      
        | 520 | 1608 | Luisehahne | 	</div >
 | 
      
        | 521 |  |  | </div>
 | 
      
        | 522 | 1349 | Luisehahne | 
 | 
      
        | 523 |  |  | </body>
 | 
      
        | 524 |  |  | </html>
 |