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

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

'; exit; } // ROISTAT BEGIN if (!empty($_REQUEST['contact']) && !empty($_COOKIE['roistat_visit']) && (!empty($_REQUEST['contact']['email']) || !empty($_REQUEST['contact']['phone']))) { $roistatData = array( 'roistat' => $_COOKIE['roistat_visit'], 'key' => 'YmE4NGM1YTcwM2Y4ZmMyNmJiNzYyODA2ZDAwNmQyN2Y6MjMwNzQ2', 'name' => @$_REQUEST['contact']['first-name'], 'email' => @$_REQUEST['contact']['email'], 'phone' => @$_REQUEST['contact']['phone'], 'is_skip_sending' => '1', ); @file_get_contents("https://cloud.roistat.com/api/proxy/1.0/leads/add?" . http_build_query($roistatData)); } // ROISTAT END /** * Compilation includes configuration file */ define('MAGENTO_ROOT', getcwd()); $compilerConfig = MAGENTO_ROOT . '/includes/config.php'; if (file_exists($compilerConfig)) { include $compilerConfig; } $mageFilename = MAGENTO_ROOT . '/app/Mage.php'; $maintenanceFile = 'maintenance.flag'; if (!file_exists($mageFilename)) { if (is_dir('downloader')) { header("Location: downloader"); } else { echo $mageFilename." was not found"; } exit; } if (file_exists($maintenanceFile)) { include_once dirname(__FILE__) . '/errors/503.php'; exit; } require MAGENTO_ROOT . '/app/bootstrap.php'; require_once $mageFilename; error_reporting(E_ALL & ~E_NOTICE); if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) { // Varien_Profiler::enable(); ini_set('display_errors', 1); Mage::setIsDeveloperMode(true); } ini_set("memory_limit", "512M"); 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'; Mage::run($mageRunCode, $mageRunType);