mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-08-03 17:54:41 +02:00
change $db_password to $db_pass
This commit is contained in:
parent
3b9c5d16f8
commit
fa154b007f
11 changed files with 41 additions and 30 deletions
|
@ -1,16 +1,18 @@
|
|||
<?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
|
||||
|
||||
$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);
|
||||
#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
|
||||
|
||||
$db_host = "localhost"; # Database Host
|
||||
$db_port = ""; # Database Port. Keep it blank if you are un sure.
|
||||
$db_user = "root"; # Database Username
|
||||
$db_pass = ""; # Database Password
|
||||
$db_name = "phpnuxbill"; # Database Name
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue