mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2024-11-11 18:16:20 +08:00
67 lines
No EOL
2.9 KiB
PHP
67 lines
No EOL
2.9 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>PHPNuxBill Installer</title>
|
|
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<!--[if lt IE 9]>
|
|
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
|
<![endif]-->
|
|
|
|
<link type='text/css' href='css/style.css' rel='stylesheet' />
|
|
<link type='text/css' href="css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body style='background-color: #FBFBFB;'>
|
|
<div id='main-container'>
|
|
<img src="img/logo.png" class="img-responsive" alt="Logo" />
|
|
<hr>
|
|
|
|
<div class="span12">
|
|
<h4> PHPNuxBill Installer </h4>
|
|
<?php
|
|
$passed = '';
|
|
$ltext = '';
|
|
if (version_compare(PHP_VERSION, '7.2.0') >= 0) {
|
|
$ltext .= 'To Run PHPNuxBill You need at least PHP version 7.2.0, Your PHP Version is: ' . PHP_VERSION . " Tested <strong>---PASSED---</strong><br/>";
|
|
$passed .= '1';
|
|
} else {
|
|
$ltext .= 'To Run PHPNuxBill You need at least PHP version 7.2.0, Your PHP Version is: ' . PHP_VERSION . " Tested <strong>---FAILED---</strong><br/>";
|
|
$passed .= '0';
|
|
}
|
|
|
|
if (extension_loaded('PDO')) {
|
|
$ltext .= 'PDO is installed on your server: ' . "Tested <strong>---PASSED---</strong><br/>";
|
|
$passed .= '1';
|
|
} else {
|
|
$ltext = 'PDO is installed on your server: ' . "Tested <strong>---FAILED---</strong><br/>";
|
|
$passed .= '0';
|
|
}
|
|
|
|
if (extension_loaded('pdo_mysql')) {
|
|
$ltext .= 'PDO MySQL driver is enabled on your server: ' . "Tested <strong>---PASSED---</strong><br/>";
|
|
$passed .= '1';
|
|
} else {
|
|
$ltext .= 'PDO MySQL driver is not enabled on your server: ' . "Tested <strong>---FAILED---</strong><br/>";
|
|
$passed .= '0';
|
|
}
|
|
|
|
if ($passed == '111') {
|
|
echo ("<br/> $ltext <br/> Great! System Test Completed. You can run PHPNuxBill on your server. Click Continue For Next Step.
|
|
<br><br>
|
|
<a href=\"step3.php\" class=\"btn btn-primary\">Continue</a><br><br><a href=\"update.php\" class=\"btn btn-primary\">Update System</a>");
|
|
} else {
|
|
echo ("<br/> $ltext <br/> Sorry. The requirements of PHPNuxBill is not available on your server.
|
|
Contact with us at Telegram <a href=\"https://t.me/phpnuxbill\">@phpnuxbill</a> with this code- $passed Or contact with your server administrator
|
|
<br><br>
|
|
<a href=\"#\" class=\"btn btn-primary disabled\">Correct The Problem To Continue</a>");
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
<div class="footer">Copyright © 2021 PHPNuxBill. All Rights Reserved<br /><br /></div>
|
|
</body>
|
|
|
|
</html>
|