mitrobill/config.sample.php

27 lines
1005 B
PHP
Raw Normal View History

2022-09-19 09:31:35 +07:00
<?php
$db_host = "localhost"; # Database Host
$db_port = ""; # Database Port. Keep it blank if you are un sure.
$db_user = "root"; # Database Username
$db_password = ""; # Database Password
2022-10-16 14:48:21 +07:00
$db_name = "phpnuxbill"; # Database Name
2024-07-21 10:02:36 +01:00
$protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https://" : "http://";
$host = $_SERVER['HTTP_HOST'];
$baseDir = rtrim(dirname($_SERVER['SCRIPT_NAME']), '/\\');
define('APP_URL', $protocol . $host . $baseDir);
2022-09-19 09:31:35 +07:00
#Please include http and do not use trailing slash after the url. For example use in this format- http://www.example.com Or http://www.example.com/finance
2024-07-21 10:02:36 +01:00
$_app_stage = 'Live'; # Do not change this
//error reporting
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', 0);
ini_set('display_startup_errors', 0);
}