New: Can define a proxy for external web access.

This commit is contained in:
Laurent Destailleur 2011-04-02 19:30:21 +00:00
parent 45d5fa60f0
commit 12388997d8

View File

@ -51,9 +51,11 @@ else
} }
// Proxy // Proxy
$PROXY_HOST = '127.0.0.1'; $PROXY_HOST = $conf->global->MAIN_PROXY_HOST;
$PROXY_PORT = '808'; $PROXY_PORT = $conf->global->MAIN_PROXY_PORT;
$USE_PROXY = false; $PROXY_USER = $conf->global->MAIN_PROXY_USER;
$PROXY_PASS = $conf->global->MAIN_PROXY_PASS;
$USE_PROXY = empty($conf->global->MAIN_PROXY_USE)?false:true;
// BN Code is only applicable for partners // BN Code is only applicable for partners
$sBNCode = "PP-ECWizard"; $sBNCode = "PP-ECWizard";