HEX
Server: Apache/2.2.15 (CentOS)
System: Linux ip-10-0-2-146.eu-west-1.compute.internal 2.6.32-754.35.1.el6.centos.plus.x86_64 #1 SMP Sat Nov 7 11:33:42 UTC 2020 x86_64
User: root (0)
PHP: 5.6.40
Disabled: NONE
Upload Files
File: /www/exchange0old/exchange/Bin/Configuration.php
<?php
//***************** Do not Edit / Change anything in this file ********************//
class Bin_Configuration extends Bin_Security { 
public $config = array();  
function Bin_Configuration() {
$this->config["HOST"] = Bin_Config::get('database.hostname');
$this->config["USER"] = Bin_Config::get('database.username');
$this->config["PASSWORD"] = Bin_Config::get('database.password');
$this->config["DB"] = Bin_Config::get('database.database');
$this->config["PREFIX"] = Bin_Config::get('database.prefix');
$this->config["api_login"] = Bin_Config::get('api.login');
$this->config["api_password"] = Bin_Config::get('api.password');
$this->config["login_url"] = Bin_Config::get('url.login');
$this->config["receive_certificate_url"] = Bin_Config::get('url.receive_certificate_url');
$this->config["sfws_api_key"] = Bin_Config::get('sfws_api_key');
$this->config["salesforce_login"] = Bin_Config::get('url.salesforce_login');
$this->config["sfws_create_debtor_url"] = Bin_Config::get('sfws_create_debtor_url');
$this->config["hijack_email_messages"] = Bin_Config::get('hijack_email_messages');
$this->config["hijack_email_messages_to"] = Bin_Config::get('hijack_email_messages_to');
} }
?>