Working on an updated installer
This commit is contained in:
parent
e56943d659
commit
69f2cf4b4c
@ -178,6 +178,11 @@ button.dropdown-submit {
|
|||||||
min-width: 350px;
|
min-width: 350px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.installer-login-box {
|
||||||
|
width: 50%;
|
||||||
|
min-width: 350px;
|
||||||
|
}
|
||||||
|
|
||||||
.login-box-container {
|
.login-box-container {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|||||||
BIN
install/background.jpg
Normal file
BIN
install/background.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 118 KiB |
@ -1,10 +1,72 @@
|
|||||||
|
<?php
|
||||||
|
define('IN_SCRIPT', 1);
|
||||||
|
define('HESK_PATH', '../');
|
||||||
|
require(HESK_PATH . 'install/install_functions.inc.php');
|
||||||
|
require(HESK_PATH . 'hesk_settings.inc.php');
|
||||||
|
|
||||||
|
hesk_dbConnect();
|
||||||
|
?>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Install | Redirecting...</title>
|
<title>Mods For HESK <?php echo MODS_FOR_HESK_NEW_VERSION; ?> Install / Upgrade</title>
|
||||||
</head>
|
<link href="<?php echo HESK_PATH; ?>../hesk_style.css?<?php echo HESK_NEW_VERSION; ?>" type="text/css" rel="stylesheet"/>
|
||||||
<body>
|
<link href="<?php echo HESK_PATH; ?>css/bootstrap.css?v=<?php echo $hesk_settings['hesk_version']; ?>"
|
||||||
<script>
|
type="text/css" rel="stylesheet"/>
|
||||||
window.location.replace("mods-for-hesk/modsForHesk.php");
|
<link href="//netdna.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
|
||||||
</script>
|
<link href="<?php echo HESK_PATH; ?>css/hesk_newStyle.css" type="text/css" rel="stylesheet"/>
|
||||||
</body>
|
<link href="<?php echo HESK_PATH; ?>css/AdminLTE.min.css" type="text/css" rel="stylesheet">
|
||||||
|
<link href="<?php echo HESK_PATH; ?>css/mods-for-hesk-new.css" type="text/css" rel="stylesheet">
|
||||||
|
<script src="<?php echo HESK_PATH; ?>js/jquery-1.10.2.min.js"></script>
|
||||||
|
<script language="Javascript" type="text/javascript" src="<?php echo HESK_PATH; ?>js/bootstrap.min.js"></script>
|
||||||
|
<script language="Javascript" type="text/javascript"
|
||||||
|
src="<?php echo HESK_PATH; ?>js/modsForHesk-javascript.js"></script>
|
||||||
|
<script language="JavaScript" type="text/javascript"
|
||||||
|
src="<?php echo HESK_PATH; ?>install/mods-for-hesk/js/ui-scripts.js"></script>
|
||||||
|
<script language="JavaScript" type="text/javascript"
|
||||||
|
src="<?php echo HESK_PATH; ?>install/mods-for-hesk/js/version-scripts.js"></script>
|
||||||
|
<script language="JavaScript" type="text/javascript"
|
||||||
|
src="<?php echo HESK_PATH; ?>js/bootstrap-datepicker.js"></script>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
background: url('install/background.jpg') no-repeat center center fixed;
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="login-box installer-login-box">
|
||||||
|
<div class="login-box-container">
|
||||||
|
<div class="login-box-background"></div>
|
||||||
|
<div class="login-box-body">
|
||||||
|
<div class="login-logo">
|
||||||
|
Thanks for choosing Mods for HESK.
|
||||||
|
</div>
|
||||||
|
<h4 class="login-box-msg">
|
||||||
|
Let's get started.
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- Modal -->
|
||||||
|
<div class="modal fade" id="uninstallModal" tabindex="-1" role="dialog" aria-labelledby="uninstallModalLabel"
|
||||||
|
aria-hidden="true">
|
||||||
|
<div class="modal-dialog">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h4 class="modal-title" id="uninstallModalTitle"><i class="fa fa-trash"></i> Uninstall Mods for HESK
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<p>Are you sure you want to uninstall Mods for HESK?</p>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<a class="btn btn-success" href="uninstallModsForHesk.php"><i class="fa fa-check"></i> Yes</a>
|
||||||
|
<button type="button" class="btn btn-danger" data-dismiss="modal"><i class="fa fa-times"></i> No
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -16,7 +16,7 @@ if (!defined('IN_SCRIPT')) {die('Invalid attempt');}
|
|||||||
|
|
||||||
// We will be installing this HESK version:
|
// We will be installing this HESK version:
|
||||||
define('HESK_NEW_VERSION','2.7.3');
|
define('HESK_NEW_VERSION','2.7.3');
|
||||||
define('MODS_FOR_HESK_NEW_VERSION','3.1.1');
|
define('MODS_FOR_HESK_NEW_VERSION','3.2.0');
|
||||||
define('REQUIRE_PHP_VERSION','5.3.0');
|
define('REQUIRE_PHP_VERSION','5.3.0');
|
||||||
define('REQUIRE_MYSQL_VERSION','5.0.7');
|
define('REQUIRE_MYSQL_VERSION','5.0.7');
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user