83 lines
2.2 KiB
PHP
83 lines
2.2 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
|
|
+--------------------------------------------------------------------------
|
|
| index.php
|
|
| ========================================
|
|
| Decides which encoded master file to execute
|
|
+--------------------------------------------------------------------------
|
|
*/
|
|
|
|
$debugStart = microtime();
|
|
|
|
if ($_GET['_a'] == 'search') {
|
|
# Do nothing
|
|
} else {
|
|
preg_match('#([a-z]{1,4})_([0-9]+)\.?([a-z]+)?(\?.*)?$#i', $_SERVER['REQUEST_URI'], $matches);
|
|
switch($matches[1]) {
|
|
case 'c':
|
|
case 'cat':
|
|
$_GET['_a'] = 'viewCat';
|
|
$_GET['catId'] = $matches[2];
|
|
break;
|
|
case 'i':
|
|
case 'info':
|
|
$_GET['_a'] = 'viewDoc';
|
|
$_GET['docId'] = $matches[2];
|
|
break;
|
|
case 'p':
|
|
case 'prod':
|
|
$_GET['_a'] = 'viewProd';
|
|
$_GET['productId'] = $matches[2];
|
|
break;
|
|
case 't':
|
|
case 'taf':
|
|
case 'tell':
|
|
$_GET['_a'] = 'tellafriend';
|
|
$_GET['productId'] = $matches[2];
|
|
break;
|
|
}
|
|
}
|
|
|
|
require_once 'ini.inc.php';
|
|
|
|
## If global.inc.php doesn't exist, the store probably needs to be installed
|
|
if (!file_exists('includes'.CC_DS.'global.inc.php')) {
|
|
header('Location: setup/index.php');
|
|
exit;
|
|
}
|
|
require_once 'includes'.CC_DS.'global.inc.php';
|
|
|
|
## If it does exist, then check that the install worked, and that the admin file exists
|
|
if (!$glob['installed'] || !isset($glob['adminFile'])) {
|
|
# Nope, lets do the install
|
|
header('Location: setup/index.php');
|
|
exit;
|
|
}
|
|
|
|
## Let's load the encoded script, based on what encoders are available
|
|
if ($glob['encoder'] == 'zend') {
|
|
## Zend Optimizer
|
|
require_once 'index_enc_zend.php';
|
|
} else {
|
|
## IonCube Loader
|
|
require_once 'index_enc_ion.php';
|
|
}
|
|
?>
|