<!doctype HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../assets/css/reset.css" />
<!--[if IE 6]>
<link rel="stylesheet" type="text/css" href="../assets/css/reset[ie_6].css" />
<![endif]-->
<!--[if gte IE 6]>
<link rel="stylesheet" type="text/css" href="../assets/css/reset[gte_ie_6].css" />
<![endif]-->
<link rel="stylesheet" type="text/css" href="../assets/css/typography.css" />
<link rel="stylesheet" type="text/css" href="../assets/css/bep_front_layout.css" />
<link rel="stylesheet" type="text/css" href="../assets/css/forms.css" />
<title>Installation</title>
<style>
<!--
ul { list-style-type: none; margin: 0; }
ul.results li.fail { background: url(../assets/icons/cross.png) no-repeat; padding-left: 25px;}
ul.results li.done { background: url(../assets/icons/tick.png) no-repeat; padding-left: 25px;}
-->
</style>
</head>
<body>
<div id="wrapper">
<a name="top"></a>
<div id="header">
<h1>BackendPro Installation Process</h1>
</div>
<div id="content">
<a name="top"></a>
<?php include_once("RUN.php");?>
<h2>
<?php
// Output the overall install status
if ($install_status)
print "<font color='green'>BackendPro Install was Successful</font>";
else
print "<font color='red'>BackendPro Install was Unsuccessful</font>";
?>
</h2>
<ul class="results">
<?php
foreach($features as $feature)
{
$fe_status = ($feature->status) ? "done" : "fail";
print "<li class='" . $fe_status . "'>" . $feature->name;
print "<ul>";
foreach($feature->components as $component)
{
$cp_status = ($component->status) ? "done" : "fail";
$cp_error = ($component->error != NULL) ? " - <b>" . $component->error . "</b>" : "";
print "<li class='" . $cp_status . "'>" . $component->name . $cp_error . "</li>";
}
print "</ul></li>";
}
?>
</ul>
<?php if($install_status):?>
<p>Your system has been fully setup, please delete the <b>/install</b> directory
otherwise other people will be able to reset your system setup.</p>
<p>You may now use the system, <a href="../index.php">click here</a> to do so.</p>
<p>A <a href="install.log">log file</a> has been created with detailed
information about the install</p>
<?php else:?>
<p>An error has occured during the installation of BackendPro. Please check the
details above to fix the problem before trying to install again. A
<a href="install.log">log file</a> has been created which more in depth
details about what went wrong.
<?php endif;?>
</div>
<div id="footer">
<a href="#top">Top</a><br />
This site is powered by BackendPro 0.6<br />
© Copyright 2009 - Adam Price - All rights Reserved
</div>
</div>
</body>
</html>