Files
2017-03-02 20:30:40 -06:00

47 lines
1.5 KiB
PHP

<?php
/*
+--------------------------------------------------------------------------
| CubeCart 4
| ========================================
| CubeCart is a registered trade mark of Devellion Limited
| Copyright Devellion Limited 2006. All rights reserved.
| Devellion Limited,
| 5 Bridge Street,
| Bishops Stortford,
| HERTFORDSHIRE.
| CM23 2JU
| UNITED KINGDOM
| http://www.devellion.com
| UK Private Limited Company No. 5323904
| ========================================
| Web: http://www.cubecart.com
| Email: info (at) cubecart (dot) com
| License Type: CubeCart is NOT Open Source Software and Limitations Apply
| Licence Info: http://www.cubecart.com/site/faq/license.php
+--------------------------------------------------------------------------
| admin.php
| ========================================
| Selects which encoding method to use
+--------------------------------------------------------------------------
*/
require_once 'ini.inc.php';
require_once 'includes'.CC_DS.'global.inc.php';
require_once 'includes'.CC_DS.'functions.inc.php';
## If you are behind a proxy, please configure the fields below
## Examples below are for GoDaddy hosting
$glob['proxyEnable']= false;
$glob['proxyHost'] = ''; // e.g. proxy.shr.secureserver.net
$glob['proxyPort'] = ''; // e.g. 3128
$glob['proxyUser'] = ''; // leave this empty for godaddy
$glob['proxyPass'] = ''; // leave this empty for godaddy
if ($glob['encoder'] == 'zend') {
require_once 'admin_enc_zend.php';
} else {
require_once 'admin_enc_ion.php';
}
?>