Upload files to "/"

Signed-off-by: nestict <icttechnest@gmail.com>
This commit is contained in:
2025-05-24 09:58:46 +02:00
parent 7b13e94a6c
commit 985ba683b8
4 changed files with 594 additions and 0 deletions

21
config.php Normal file
View File

@ -0,0 +1,21 @@
<?php
define('APP_URL', 'https://mbsa.nestict.net');
$_app_stage = 'Live';
// Database PHPNuxBill
$db_host = 'localhost';
$db_user = 'Nestict';
$db_password = 'Kenya@2030!';
$db_name = 'mbsa';
if($_app_stage!='Live'){
error_reporting(E_ERROR);
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
}else{
error_reporting(E_ERROR);
ini_set('display_errors', 1);
ini_set('display_startup_errors',1);
}