| Server IP : 162.214.74.102 / Your IP : 216.73.217.80 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_apps/regional/application/install/ |
Upload File : |
<?php
// *************************************************************************
// * *
// * iBilling - Accounting, Billing Software *
// * Copyright (c) Sadia Sharmin. All Rights Reserved *
// * *
// *************************************************************************
// * *
// * Email: sadiasharmin3139@gmail.com *
// * Website: http://www.sadiasharmin.com *
// * *
// *************************************************************************
// * *
// * This software is furnished under a license and may be used and copied *
// * only in accordance with the terms of such license and with the *
// * inclusion of the above copyright notice. *
// * If you Purchased from Codecanyon, Please read the full License from *
// * here- http://codecanyon.net/licenses/standard *
// * *
// *************************************************************************
require ('application_installer_config.php'); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<title><?php echo $app_name; ?> Installer</title>
<link rel="shortcut icon" type="image/x-icon" href="../storage/icon/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="../../ui/theme/lrsys/css/bootstrap.min.css" rel="stylesheet">
<link href="../../ui/theme/lrsys/lib/fa/css/font-awesome.min.css" rel="stylesheet">
<link href="../../ui/theme/lrsys/lib/icheck/skins/all.css" rel="stylesheet">
<link href="../../ui/lib/css/animate.css" rel="stylesheet">
<link href="../../ui/lib/toggle/bootstrap-toggle.min.css" rel="stylesheet">
<link href="../../ui/theme/lrsys/css/style.css?ver=2.0.1" rel="stylesheet">
<link href="../../ui/theme/lrsys/css/component.css?ver=2.0.1" rel="stylesheet">
<link href="../../ui/theme/lrsys/css/custom.css" rel="stylesheet">
<link href="../../ui/lib/icons/css/ibilling_icons.css" rel="stylesheet">
<link href="../../ui/theme/lrsys/css/material.css" rel="stylesheet">
<link type='text/css' href='style.css' rel='stylesheet'/>
</head>
<body style='background-color: #FBFBFB;'>
<div id='main-container'>
<div class='header'>
<div class="header-box wrapper">
<div class="hd-logo"><a href="#"><img src="../storage/system/logo.png" alt="Logo"/></a></div>
</div>
</div>
<!-- contents area start -->
<div class="col-md-12">
<hr>
<?php
$passed = '';
$ltext = '';
if (version_compare(PHP_VERSION, '5.5.0') >= 0) {
$ltext .= 'To Run '.$app_name.' You need at least PHP version 5.5.0, Your PHP Version is: ' . PHP_VERSION . " Tested <strong>---PASSED---</strong><br/>";
$passed .= '1';
} else {
$ltext .= 'To Run '.$app_name.' You need at least PHP version 5.5.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 $app_name on your server. Click Continue For Next Step.
<br><br>
<a href=\"step3.php\" class=\"btn btn-primary\">Continue</a>
");
} else {
echo("<br/> $ltext <br/> Sorry. The requirements of $app_name is not available on your server.
Please contact with this page- $support_url 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>
<!-- contents area end -->
</div>
<script src="../../ui/theme/lrsys/js/jquery-1.10.2.js"></script>
<script src="../../ui/theme/lrsys/js/bootstrap.min.js"></script>
<script src="../../ui/lib/blockui.js"></script>
</body>
</html>