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