MSV FM

dot.antimicrobial@66.96.161.157: ~ $
Path : /hermes/sb_web/web/web/web/b2432/glovault.njhealey.com/
File Upload :
Current < : /hermes/sb_web/web/web/web/b2432/glovault.njhealey.com/install.php

<?php
error_reporting ( E_ALL );
define ( 'CHMOD_VALUE', 0777 );
ob_start();
set_magic_quotes_runtime ( 0 );
require_once 'includes/constants.inc.php';
require_once 'includes/db.class.php';
require_once 'includes/index.class.php';
require_once 'includes/functions.inc.php';

if ( get_magic_quotes_gpc ( ) )
{
    $_GET = strip_gpc ( $_GET );
    $_POST = strip_gpc ( $_POST );
}

function file_perm ( $path )
{
    return substr ( sprintf ( '%o', fileperms ( $path ) ), -4);
}

function get_dir_status ( $path )
{
    return is_writable ( $path ) ? 'OK (' . file_perm ( $path ) . ')' : 'Please CHMOD ' . $path . ' to 0' . decoct ( CHMOD_VALUE );
}

function get_file_status ( $file )
{
    if ( !is_file ( $file ) )
    {
	if ( !touch ( $file ) )
	{
	    return 'File does not exist and attempt to create it has failed. Please create ' . $file . ' manually.';
	}
	else
	{
	    return 'OK, file was created.';
	}
    }
    elseif ( is_writable ( $file ) )
    {
	return 'OK (' . file_perm ( $file ) . ')';
    }
    else
    {
	if ( !change_mode ( $file, CHMOD_VALUE ) )
	{
	    return 'File permission changed. Reload this page to re-test.';
	}
	else
	{
	    return 'Unable to change file permission. Please CHMOD ' . $file;
	}
    }
}

$step = isset ( $_GET['step'] ) ? $_GET['step'] : 1;
?>


<?php if ( $step == 1 ) : ?>
The following directories must be CHMODed to writeable (0777, or 0755).
<table cellspadding="3" cellspacing="1" border="1">
    <tr>
	<td>Directory description</td>
	<td>Path</td>
	<td>Status</td>
    </tr>
    <tr>
	<td>Glovault logs</td>
	<td><?=LOGS_DIR?></td>
	<td><?=get_dir_status(LOGS_DIR)?></td>
    </tr>
    <tr>
	<td>Glovault settings</td>
	<td><?=UPLSETTINGS_DIR?></td>
	<td><?=get_dir_status(UPLSETTINGS_DIR)?></td>
    </tr>
    <tr>
	<td>User data</td>
	<td><?=USERDATA_DIR?></td>
	<td><?=get_dir_status(USERDATA_DIR)?></td>
    </tr>
</table>

The Installer will try to CHMOD the following files. If it does not succeed,
you will need to do so manually.
<table cellspadding="3" cellspacing="1" border="1">
    <tr>
	<td>File description</td>
	<td>Path</td>
	<td>Status</td>
    </tr>
    <tr>
	<td>Upload Settings</td>
	<td><?=UPLOADER_SETTINGS?></td>
	<td><?=get_file_status(UPLOADER_SETTINGS)?></td>
    </tr>
    <tr>
	<td>User Settings</td>
	<td><?=USER_SETTINGS?></td>
	<td><?=get_file_status(USER_SETTINGS)?></td>
    </tr>
    <tr>
	<td>Announcements</td>
	<td><?=ANNOUNCEMENT_FILE?></td>
	<td><?=get_file_status(ANNOUNCEMENT_FILE)?></td>
    </tr>
    <tr>
	<td>Email templates</td>
	<td><?=EMAIL_TEMPLATES?></td>
	<td><?=get_file_status(EMAIL_TEMPLATES)?></td>
    </tr>
    <tr>
	<td>Users index</td>
	<td><?=USERS_INDEX?></td>
	<td><?=get_file_status(USERS_INDEX)?></td>
    </tr>
    <tr>
	<td>Names index</td>
	<td><?=NAMES_INDEX?></td>
	<td><?=get_file_status(NAMES_INDEX)?></td>
    </tr>
    <tr>
	<td>Emails index</td>
	<td><?=EMAILS_INDEX?></td>
	<td><?=get_file_status(EMAILS_INDEX)?></td>
    </tr>
    <tr>
	<td>Approval index</td>
	<td><?=APPROVAL_INDEX?></td>
	<td><?=get_file_status(APPROVAL_INDEX)?></td>
    </tr>
    <tr>
	<td>Bandwidth index</td>
	<td><?=BANDWIDTH_INDEX?></td>
	<td><?=get_file_status(BANDWIDTH_INDEX)?></td>
    </tr>
</table>
<?php header( 'Location: install.php?step=2' ) ;?>

If everything is OK, <a href="install.php?step=2">go to step 2</a>.
<?php endif;
 ?>


<?php if ( $step == 2 ):

$pp = 1;
if ($pp)
//if ( count ( $_POST ) )
{
    $settings = $_POST['settings'];
    $settings[uploader_url] = 'http://'.$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']).'/';
    $settings[userfiles_dir] = @is_dir('files/')?realpath('files/'):'';
    $settings[userfiles_dir] = $settings[userfiles_dir].'/';
    $settings[userfiles_url] = is_dir('files/')?'http://'.$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']).'/files/':'';

    if ( !is_dir ( $settings['userfiles_dir'] ) )
    {
	exit ( 'Error: Userfiles directory does not exist.' );
    }
    elseif ( !is_writable ( $settings['userfiles_dir'] ) )
    {
	exit ( 'Error: Userfiles directory is not writable. Please go back, CHMOD and try again.' );
    }

    if ( !copy ( DATA_DIR . '/userfiles_htaccess.txt', $settings['userfiles_dir'] . '/.htaccess' ) )
    {
	print 'Notice: Unable to copy the file data/userfiles_htaccess.txt to the userfiles directory. Please do this manually.';
    }

    $db = new DB;
    if ( $db->open ( UPLOADER_SETTINGS ) )
    {
	$db->set ( $settings );
	$db->save ();
	print '<br />Upload settings successful! You will now be take to the next step. <a href="install.php?step=3">Click here go to there right away!</a>';
	header( 'Location: install.php?step=3' ) ;
//header ( 'Refresh: 5;url=install.php?step=3' );
    }
    else exit ( 'Error: Unable to open the uploader settings file.' );
}
else { ?>
These are only the core Glovault settings. For more settings, visit the
admin section after installation. Please make sure all URLs and Paths end with a trailing slash (/).
<form method="post" action="install.php?step=2">
    <table cellspadding="3" cellspacing="1" border="1">
	<tr>
	    <td>Glovault URL</td>
	    <td>
		<input type="text" name="settings[uploader_url]" size="50" value="http://<?=$_SERVER['HTTP_HOST']?><?=dirname($_SERVER['PHP_SELF'])?>/" /><br />
		Full URL to the uploader directory. Ex: http://www.globat.com/uploader/
	    </td>
	</tr>
	<tr>
	    <td>User files directory</td>
	    <td>
		<input type="text" name="settings[userfiles_dir]" size="50" value="<?=@is_dir('files/')?realpath('files/'):''?>/" /><br />
		Full path to the user files directory where user accounts will be created. It can be anywhere on your server. The default is the "files" directory
		located in the uploader directory. Remember to CHMOD this directory!
	    </td>
	</tr>
	<tr>
	    <td>User files url</td>
	    <td>
		<input type="text" name="settings[userfiles_url]" size="50" value="<?=is_dir('files/')?'http://'.$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']).'/files/':''?>" /><br />
		The full URL to the userfiles directory.
	    </td>
	</tr>
	<tr>
	    <td>Admin email(s)</td>
	    <td>
		<input type="text" name="settings[email]" size="50" /><br />
		The email address(es) of the admin. You can enter multiple, just seperate them with a comma.
	    </td>
	</tr>
	<tr>
	    <td></td>
	    <td>
		<input type="submit" name="submit" value="Submit" />
	    </td>
	</tr>
    </table>
</form>
<?php } endif; ?>






<?php if ( $step == 3 ) :
if ( count ( $_POST ) )
{
    $userid = 1;
    $submit = $_POST['user'];

    if ( $submit['password'] != $submit['password2'] )
	{
	//exit ( 'The passwords you entered do not match. Click Back.' );
	?>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

<title>Globat - GloVault&#8482;</title>

<style type="text/css">

h1{

	color:#990000;

	font-size:16px;

	margin:0;

	padding:0;

	}

h2{

	color:#333333;

	font-size:16px;

	margin:0;

	padding:0;

	}

h3{

	font-size:10px;

	margin:0;

	padding:0;

	}

.fLeft{

	float:left;

	}

.fRight{

	float:right;

	}

.outline{

	border:thin;

	border-color:#333333;

	border-style:solid;

	border-width:1px;

	}

#header{

	width:780px;

	height:48px;

	margin:15px 0px 15px 0px;

	padding:0;

	}

#container{

	width:780px;

	margin:0;

	padding:0;

	}

#content{

	width:780px;

	height:400px;

	margin:0;

	padding:0;

	}

#redbar{

	margin:0;

	padding:2px;

	}

#gvLogo{

	margin:15px 0px 10px 0px;

	padding:0;

	clear:both;

	}

#newArea{

	width:350px;

	margin-top:0px;

	margin-left:25px;



	}

#loginArea{

	width:350px;

	margin-top:0px;

	margin-right:25px;

	}

#footer{

	margin:0;

	padding:0;

	color:#FFFFFF;

	width:780px;

	font-size:10px;

	}

#footer a{

	color:#FFFFFF;

	}

#footer a:visited{

	color:#CCCCCC;

	}

</style>



</head>



<body style="margin:0; padding:0; font-family:Arial, Helvetica, sans-serif; color:#333333;">

<div align="center">

	<div id="container">

		<div id="header">

			<div class="fLeft"><img src="images/globat_logo.gif" width="301" height="46" /></div>

			<div class="fRight"><img src="images/18772globat.gif" /></div>

		</div>

		<div id="content" class="outline">

			<div id="redbar" style="height:25px; background-color:#990000; color:#FFFFFF; font-size:14px;" align="left"><div style="margin:5px 0 0 25px;">GloVault&#8482;</div></div>

			<div id="gvLogo" style="text-align:center;"><img src="images/gv_logo.gif"/></div>

			<div align="center">

				<div id="newArea" style="float:none;">

					<div class="outline" style="width:330px; height:187px; padding:10px; margin:0; text-align:left;">

						<h1>Error :</h1><br />

						<table width="330" border="0" cellspacing="0" cellpadding="0" style="font-size:12px; line-height:24px;">

                          <tr>

				<td>The passwords you entered do not match. Click Back.</td>

                          </tr>

                        </table>

					</div>

					<br />

					<div style="text-align:center;"><h3>Have questions about GloVault, <a href="http://support.globat.com/sc/index.php/GloVault_-_Sharing_Made_Easy">read the GloVault FAQs here</a></h3></div>

				</div>

			</div>

			<!--<div class="fRight">

				<div id="loginArea" style="float:none;">

					<div style="text-align:center;"><h1>Already have a GloVault?</h1></div>

					<div class="outline" style="width:330px; height:187px; padding:10px; margin:0; text-align:left;">

						<h2>Login to your GloVault Account</h2><br />

						<table width="330" border="0" cellspacing="0" cellpadding="0" style="font-size:12px; line-height:24px;">

                          <tr>

                            <td width="110" height="108" valign="top">Username<br />

                              	Password<br />

							</td>

                            <td width="220" valign="top">

								<form id="form2" method="post" action="account.php?action=login">

									<input type="hidden" name="action" value="login" />

									<input type="hidden" name="task" value="login" />

                               		<input type="text" tabindex="1" name="username" id="username" maxlength="100" size="25"/>

                              		<br />

                              		<input type="password" tabindex="2" name="password" id="password" maxlength="30" size="25"/>

                              		<h3><a href="account.php?action=password">Forgot your password?</a></h3>

									<input type="submit" name="submit" value="Submit" style="margin-top:10px;" />

                            	</form>

                            </td>

                          </tr>

                        </table>

					</div>

				</div>

			</div> fRight div -->

		</div><!-- content div -->

		<div id="footer" class="outline">

			<table width="780px" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#333333">

  				<tr>

    				<td>

      					<table width="780px" border="0" cellspacing="3" cellpadding="0">

        					<tr align="center">

								<td colspan="3"><img src="images/grey_footerbar.gif" width="755" height="5" border="0" /></td>

        					</tr>

        					<tr>

          						<!--<td width=""><img src="/images/web2_icon.gif" title="Web 2.0, Ajax, web hosting, technology, and great service!" alt="Web 2.0, Ajax, web hosting, technology, and great service!" width="66" height="15" hspace="5" vspace="5" border="0" /></td>-->

          						<td width="100%" colspan="3" align="center">

									<a href="http://www.globat.com" class="footer">Web Hosting</a> &nbsp; <font color="#CCCCCC">|</font> &nbsp;

									<a href="/partners/gloflex_affiliate_program/index.htm" class="footer">Affiliates</a> &nbsp; <font color="#CCCCCC">|</font> &nbsp;

									<a href="/products/index.htm" class="footer">Web Hosting Products</a> &nbsp; <font color="#CCCCCC">|</font> &nbsp;

									<a href="http://support.globat.com/" class="footer">FAQ</a> &nbsp; <font color="#CCCCCC">|</font> &nbsp;

									<a href="/about_us/defyinggravity.htm" class="footer">Defying Gravity</a> &nbsp; <font color="#CCCCCC">|</font> &nbsp;

									<a href="/about_us/contact_us/index.htm" class="footer">Contact</a> &nbsp; <font color="#CCCCCC">|</font> &nbsp;

									<a href="/miscellaneous/sitemap.htm" class="footer">Site Map</a>

		  						</td>

          						<!--<td width="15%">&nbsp;</td>-->

        					</tr>

        					<tr>

          						<td colspan="3"><img src="images/grey_pxl.gif" width="98%" height="1" border="0" /></td>

        					</tr>

        					<tr>

								<td align="left"><img src="images/customersatisfaction.gif" title="Customer Satisfaction" alt="Customer Satisfaction" width="99" height="30" hspace="5" vspace="5" border="0" /></td>

          						<td align="center" nowrap="nowrap"><p style="color:#FFFFFF;">&copy; 2001-2006 Globat, LLC. All rights reserved. Usage of this site constitutes acceptance of our<br /><a href="/about_us/legal/index.htm" class="footer">Privacy Policy, Terms &amp; Conditions.</a></p></td>

          						<td align="right"><a href="http://www.bbbonline.org/cks.asp?id=1060915164330" target="_blank"><img src="images/bbbonline_logo.gif" title="BBB Online Reliability Program" alt="BBB Online Reliability Program" hspace="5" vspace="5" border="0" /></a></td>

        					</tr>

      					</table>

    				</td>

				</tr>

			</table>

		</div><!-- footer div -->		

	</div><!-- container div -->

</div>

</body>

</html>






	<?php
	exit();
	}

    $newuser = array
    (
	'id'                    => $userid,
	'name'                  => $submit['name'],
	'password'              => md5 ( $submit['password'] ),
	'email'                 => $submit['email'],
	'level'                 => LEVEL_ADMIN,

	// messages
	'messages'		=> array ( ),
	'max_messages'		=> 0,

	// user preferences
	'prf_public_browse'     => false,
	'prf_public_email'	=> false,
	'prf_private_msg'	=> false,

	// user status
	'is_activated'          => true,
	'is_approved'           => true,
	'is_suspended'          => false,

	// registration info
	'reg_email'             => $submit['email'],
	'reg_date'              => time ( ),
	'reg_ip'                => $_SERVER['REMOTE_ADDR'],

	// bandwidth
	'bw_used'               => 0,
	'bw_last_reset'         => time (),
	'bw_max'                => 0,
	'bw_reset_period'       => 0,
	'bw_auto_reset'         => 0,
	'bw_limit_notice'	=> 0, // flag to indicate whether user was added to the list of users who have exceeded bw limit. Value 0 or 1

	// storage
	'fl_max_storage'        => 0,
	'fl_max_filesize'       => 0,
	'fl_allowed_filetypes'  => '',
	'fl_images_only'        => false,
	'fl_allow_rename'       => 'all',
	'fl_create_folder'      => true,
	'fl_watermark'          => 0,
	'fl_max_folders'        => 0,

	// Extras
	'xtr_admin_comments'    => 'I am an admin!',
	'xtr_new_email_addr'    => '', // new email address to change if code check passes
	'xtr_last_login_ip'     => '',
	'xtr_last_login_time'   => 0,
	'xtr_activation_code'   => md5 ( get_rand ( 1024 ) ), // code to activate account
	'xtr_password_code'     => md5 ( get_rand ( 1024 ) ), // code to change password
	'xtr_change_email_code' => md5 ( get_rand ( 1024 ) ), // code to change email
	'xtr_pass_attempts'	=> 0, // password reset attempts (5 max)
	'xtr_pass_last_att'	=> 0, // last attempt
    );

    $user = new User;
    if ( $user->create ( $userid ) )
    {
	$user->open ( $userid );
	$user->set ( $newuser );
	$user->save();

	$names_idx  = new Index; if ( !$names_idx->open ( NAMES_INDEX ) ) exit ( 'Unable to load index ' . NAMES_INDEX );
	$emails_idx = new Index; if ( !$emails_idx->open( EMAILS_INDEX ) ) exit ( 'Unable to load index ' . EMAILS_INDEX );
	$users_idx  = new Index; if ( !$users_idx->open ( USERS_INDEX ) ) exit ( 'Unable to load index ' . USERS_INDEX );
	$names_idx->insert ( $newuser['name'], $newuser['id'] );
	$emails_idx->insert ( strtolower ( $newuser['email'] ), $newuser['id'] );
	$users_idx->insert ( strtolower ( $newuser['name'] ), $newuser['id'] );
	$names_idx->save ( );
	$emails_idx->save( );
	$users_idx->save ( );

	$db = new DB;

	if ( $db->open ( UPLOADER_SETTINGS ) )
	{
	    $user_root = $db->get ( 'userfiles_dir' ) . "/$userid/";

	    if ( !make_dir ( $user_root, CHMOD_VALUE ) )
	    {
		exit ( '<h1>Error!</h1><span class="red">Unable to create user directory for the admin. Please go back to Step 1.</span>' );
	    }
	}
	else
	{
	    exit ( '<h1>Error!</h1><span class="red">Unable to open the uploader settings file. Please go back to Step 1.</span>' );
	}

	header( 'Location: install.php?step=4' ) ;
	// print 'Congrats, installation successful. <a href="install.php?step=4">Click here</a> to remove the installer and login. If the installer fails to remove itself, please delete it manually.';

    }
    else exit ( 'Unable to create user file. Please CHMOD the directory ' . USERDATA_DIR );
}
else
{?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

<title>Globat - GloVault&#8482;</title>

<style type="text/css">

h1{

	color:#990000;

	font-size:16px;

	margin:0;

	padding:0;

	}

h2{

	color:#333333;

	font-size:16px;

	margin:0;

	padding:0;

	}

h3{

	font-size:10px;

	margin:0;

	padding:0;

	}

.fLeft{

	float:left;

	}

.fRight{

	float:right;

	}

.outline{

	border:thin;

	border-color:#333333;

	border-style:solid;

	border-width:1px;

	}

#header{

	width:780px;

	height:48px;

	margin:15px 0px 15px 0px;

	padding:0;

	}

#container{

	width:780px;

	margin:0;

	padding:0;

	}

#content{

	width:780px;

	height:400px;

	margin:0;

	padding:0;

	}

#redbar{

	margin:0;

	padding:2px;

	}

#gvLogo{

	margin:15px 0px 10px 0px;

	padding:0;

	clear:both;

	}

#newArea{

	width:350px;

	margin-top:0px;

	margin-left:25px;



	}

#loginArea{

	width:350px;

	margin-top:0px;

	margin-right:25px;

	}

#footer{

	margin:0;

	padding:0;

	color:#FFFFFF;

	width:780px;

	font-size:10px;

	}

#footer a{

	color:#FFFFFF;

	}

#footer a:visited{

	color:#CCCCCC;

	}

</style>



</head>



<body style="margin:0; padding:0; font-family:Arial, Helvetica, sans-serif; color:#333333;">

<div align="center">

	<div id="container">

		<div id="header">

			<div class="fLeft"><img src="images/globat_logo.gif" width="301" height="46" /></div>

			<div class="fRight"><img src="images/18772globat.gif" /></div>

		</div>

		<div id="content" class="outline">

			<div id="redbar" style="height:25px; background-color:#990000; color:#FFFFFF; font-size:14px;" align="left"><div style="margin:5px 0 0 25px;">GloVault&#8482;</div></div>

			<div id="gvLogo" style="text-align:center;"><img src="images/gv_logo.gif"/></div>

			<div align="center">

				<div id="newArea" style="float:none;">

					<div class="outline" style="width:330px; height:187px; padding:10px; margin:0; text-align:left;">

						<h1>Create your GloVault Account</h1><br />

						<table width="330" border="0" cellspacing="0" cellpadding="0" style="font-size:12px; line-height:24px;">

                          <tr>

                            <td width="110" height="108" valign="top">Username<br />

                              	Password<br />

                              	Confirm Password<br />

                            	E-mail</td>

                            <td width="220" valign="top">

								<form id="form1" name="form1" method="post" action="install.php?step=3">

                              		<input type="text" name="user[name]" size="25"/>

                              		<br />

                              		<input type="password" name="user[password]" size="25"/>

                              		<br />

                              		<input type="password" name="user[password2]" size="25"/>

                              		<br />

                              		<input type="text" name="user[email]" size="25"/>

									<br />

									<input type="submit" name="submit" value="Submit" style="margin-top:10px;" />

                            	</form>

                            </td>

                          </tr>

                        </table>

					</div>

					<br />

					<div style="text-align:center;"><h3>Have questions about GloVault, <a href="http://support.globat.com/sc/index.php/GloVault_-_Sharing_Made_Easy">read the GloVault FAQs here</a></h3></div>

				</div>

			</div>

			<!--<div class="fRight">

				<div id="loginArea" style="float:none;">

					<div style="text-align:center;"><h1>Already have a GloVault?</h1></div>

					<div class="outline" style="width:330px; height:187px; padding:10px; margin:0; text-align:left;">

						<h2>Login to your GloVault Account</h2><br />

						<table width="330" border="0" cellspacing="0" cellpadding="0" style="font-size:12px; line-height:24px;">

                          <tr>

                            <td width="110" height="108" valign="top">Username<br />

                              	Password<br />

							</td>

                            <td width="220" valign="top">

								<form id="form2" method="post" action="account.php?action=login">

									<input type="hidden" name="action" value="login" />

									<input type="hidden" name="task" value="login" />

                               		<input type="text" tabindex="1" name="username" id="username" maxlength="100" size="25"/>

                              		<br />

                              		<input type="password" tabindex="2" name="password" id="password" maxlength="30" size="25"/>

                              		<h3><a href="account.php?action=password">Forgot your password?</a></h3>

									<input type="submit" name="submit" value="Submit" style="margin-top:10px;" />

                            	</form>

                            </td>

                          </tr>

                        </table>

					</div>

				</div>

			</div> fRight div -->

		</div><!-- content div -->

		<div id="footer" class="outline">

			<table width="780px" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#333333">

  				<tr>

    				<td>

      					<table width="780px" border="0" cellspacing="3" cellpadding="0">

        					<tr align="center">

								<td colspan="3"><img src="images/grey_footerbar.gif" width="755" height="5" border="0" /></td>

        					</tr>

        					<tr>

          						<!--<td width=""><img src="/images/web2_icon.gif" title="Web 2.0, Ajax, web hosting, technology, and great service!" alt="Web 2.0, Ajax, web hosting, technology, and great service!" width="66" height="15" hspace="5" vspace="5" border="0" /></td>-->

          						<td width="100%" colspan="3" align="center">

									<a href="http://www.globat.com" class="footer">Web Hosting</a> &nbsp; <font color="#CCCCCC">|</font> &nbsp;

									<a href="/partners/gloflex_affiliate_program/index.htm" class="footer">Affiliates</a> &nbsp; <font color="#CCCCCC">|</font> &nbsp;

									<a href="/products/index.htm" class="footer">Web Hosting Products</a> &nbsp; <font color="#CCCCCC">|</font> &nbsp;

									<a href="http://support.globat.com/" class="footer">FAQ</a> &nbsp; <font color="#CCCCCC">|</font> &nbsp;

									<a href="/about_us/defyinggravity.htm" class="footer">Defying Gravity</a> &nbsp; <font color="#CCCCCC">|</font> &nbsp;

									<a href="/about_us/contact_us/index.htm" class="footer">Contact</a> &nbsp; <font color="#CCCCCC">|</font> &nbsp;

									<a href="/miscellaneous/sitemap.htm" class="footer">Site Map</a>

		  						</td>

          						<!--<td width="15%">&nbsp;</td>-->

        					</tr>

        					<tr>

          						<td colspan="3"><img src="images/grey_pxl.gif" width="98%" height="1" border="0" /></td>

        					</tr>

        					<tr>

								<td align="left"><img src="images/customersatisfaction.gif" title="Customer Satisfaction" alt="Customer Satisfaction" width="99" height="30" hspace="5" vspace="5" border="0" /></td>

          						<td align="center" nowrap="nowrap"><p style="color:#FFFFFF;">&copy; 2001-2006 Globat, LLC. All rights reserved. Usage of this site constitutes acceptance of our<br /><a href="/about_us/legal/index.htm" class="footer">Privacy Policy, Terms &amp; Conditions.</a></p></td>

          						<td align="right"><a href="http://www.bbbonline.org/cks.asp?id=1060915164330" target="_blank"><img src="images/bbbonline_logo.gif" title="BBB Online Reliability Program" alt="BBB Online Reliability Program" hspace="5" vspace="5" border="0" /></a></td>

        					</tr>

      					</table>

    				</td>

				</tr>

			</table>

		</div><!-- footer div -->		

	</div><!-- container div -->

</div>

</body>

</html>



<?php } endif; ?>


<?php if ( $step == 4 )
{
    if ( unlink ( 'install.php' ) )
    {
	header ( 'Location: account.php?action=login' );
    }
    else
    {
	exit ( 'Unable to remove install.php, please remove this file.' );
    }
}
?>