Skip to content

Commit

Permalink
Added software_installed.php
Browse files Browse the repository at this point in the history
This is a HTML include file which presents information to the if the
installer finds an existing database file.
- helps to separate logic (php) from presentation (HTML)
  • Loading branch information
freehostsorg committed Oct 11, 2015
1 parent 78c97e2 commit 41cdb87
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions setup/software_installed.php
@@ -0,0 +1,11 @@
<?php if( !isset($xot_setup) ) { die( 'Access denied.'); } ?>
<h2>Software Installed</h2>

<p>Xerte Online Toolkits appears to be installed.</p>
<p>To go to your installation visit: <a href="<?php echo $xot_setup->xot_url; ?>" title="<?php echo $xot_setup->xot_url; ?>"><?php echo $xot_setup->xot_url; ?></a>.</p>

<h3>To reinstall:</h3>

<ul>
<li>Delete 'database.php' from <code><?php echo $xot_setup->root_path; ?></code></li>
</ul>

0 comments on commit 41cdb87

Please sign in to comment.