Whoops, it looks like you have an invalid PHP version.

Magento supports PHP 5.2.0 or newer. Find out how to install Magento using PHP-CGI as a work-around.

'; exit; } /** * Error reporting */ error_reporting(E_ALL | E_STRICT); /** * Compilation includes configuration file */ $compilerConfig = 'includes/config.php'; if (file_exists($compilerConfig)) { include $compilerConfig; } $mageFilename = 'app/Mage.php'; $maintenanceFile = 'maintenance.flag'; if (!file_exists($mageFilename)) { if (is_dir('downloader')) { header("Location: downloader"); } else { echo $mageFilename." was not found"; } exit; } $ip = $_SERVER['REMOTE_ADDR']; $allowed = array('69.59.192.10','69.59.211.30','184.100.46.127','184.100.16.18','184.100.21.28'); if (file_exists($maintenanceFile) && !in_array($ip, $allowed)) { include_once dirname(__FILE__) . '/errors/503.php'; exit; } require_once $mageFilename; #Varien_Profiler::enable(); if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) { Mage::setIsDeveloperMode(true); } #JASON #Mage::setIsDeveloperMode(true); ini_set('display_errors', 1); error_reporting(-1); umask(0); /* Store or website code */ $mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : ''; /* Run store or run website */ $mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'store'; switch($_SERVER['HTTP_HOST']) { case 'softstar.proworks.com': case 'softstarshoes.proworks.com': case 'beta.softstarshoes.com': case 'softstarshoes.com': case 'softstarshoes.com:8080': case 'www.softstarshoes.com': case 'www.softstarshoes.com:8080': case 'skoll.dragon.orange35.com': case 'bontos.dragon.orange35.com': case 'nigilit.dragon.orange35.com': case 'valent.dragon.orange35.com': case 'dev.softstarshoes.com': $mageRunCode = 'softstar'; $mageRunType = 'website'; break; case 'test.softstarshoes.com': $mageRunCode = 'testshoestore'; $mageRunType = 'website'; case 'leather-tassel.com': case 'www.leather-tassel.com': case 'fitting.us.com': case 'www.fitting.us.com': $mageRunCode = 'tassels'; $mageRunType = 'website'; break; } Mage::run($mageRunCode, $mageRunType);