2017-05-22 03:04:32 -06:00
|
|
|
<?php
|
|
|
|
|
2017-12-16 13:54:00 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2017-05-22 03:04:32 -06:00
|
|
|
// Whether to show debugging data in output.
|
|
|
|
// DO NOT SET TO TRUE IN PRODUCTION!!!
|
|
|
|
define("DEBUG", false);
|
|
|
|
|
2017-10-11 12:50:09 -06:00
|
|
|
// AccountHub database connection settings
|
2017-05-22 03:04:32 -06:00
|
|
|
// See http://medoo.in/api/new for info
|
|
|
|
define("DB_TYPE", "mysql");
|
2017-11-17 00:00:45 -07:00
|
|
|
define("DB_NAME", "accounthub");
|
2017-05-22 03:04:32 -06:00
|
|
|
define("DB_SERVER", "localhost");
|
2017-11-17 00:00:45 -07:00
|
|
|
define("DB_USER", "accounthub");
|
2017-05-22 03:04:32 -06:00
|
|
|
define("DB_PASS", "");
|
|
|
|
define("DB_CHARSET", "utf8");
|
|
|
|
|
2017-10-11 12:50:09 -06:00
|
|
|
// ManagePanel DB connection
|
|
|
|
define("DB2_TYPE", "mysql");
|
|
|
|
define("DB2_NAME", "managepanel");
|
|
|
|
define("DB2_SERVER", "localhost");
|
|
|
|
define("DB2_USER", "managepanel");
|
|
|
|
define("DB2_PASS", "");
|
|
|
|
define("DB2_CHARSET", "utf8");
|
|
|
|
|
2017-05-22 03:04:32 -06:00
|
|
|
// Name of the app.
|
|
|
|
define("SITE_TITLE", "ManagePanel");
|
|
|
|
|
|
|
|
|
2018-04-15 19:28:34 -06:00
|
|
|
// URL of the AccountHub API endpoint
|
2017-07-21 00:59:20 -06:00
|
|
|
define("PORTAL_API", "http://localhost/accounthub/api.php");
|
2018-04-15 19:28:34 -06:00
|
|
|
// URL of the AccountHub home page
|
2017-07-21 00:59:20 -06:00
|
|
|
define("PORTAL_URL", "http://localhost/accounthub/home.php");
|
2018-04-15 19:28:34 -06:00
|
|
|
// AccountHub API Key
|
2017-05-22 03:04:32 -06:00
|
|
|
define("PORTAL_KEY", "123");
|
|
|
|
|
|
|
|
// For supported values, see http://php.net/manual/en/timezones.php
|
|
|
|
define("TIMEZONE", "America/Denver");
|
|
|
|
|
|
|
|
// Base URL for site links.
|
2018-04-15 19:28:34 -06:00
|
|
|
define('URL', '.');
|
2017-05-22 03:04:32 -06:00
|
|
|
|
2018-04-15 19:28:34 -06:00
|
|
|
// Use Captcheck on login screen
|
|
|
|
// https://captcheck.netsyms.com
|
|
|
|
define("CAPTCHA_ENABLED", FALSE);
|
|
|
|
define('CAPTCHA_SERVER', 'https://captcheck.netsyms.com');
|
2017-05-22 03:04:32 -06:00
|
|
|
|
|
|
|
// See lang folder for language options
|
|
|
|
define('LANGUAGE', "en_us");
|
|
|
|
|
2017-12-16 13:54:00 -07:00
|
|
|
|
|
|
|
define("FOOTER_TEXT", "");
|
2018-04-08 16:36:09 -06:00
|
|
|
define("COPYRIGHT_NAME", "Netsyms Technologies");
|