mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2024-11-10 17:26:48 +08:00
9 lines
No EOL
535 B
PHP
9 lines
No EOL
535 B
PHP
<?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
|
|
$db_name = "phpnuxbill"; # Database Name
|
|
define('APP_URL', 'http://localhost/phpnuxbill'); # Application URL.
|
|
#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
|
|
$_app_stage = 'Live'; # Do not change this
|