Magento supports PHP 7.1.3 or later. Please read Magento System Requirements. HTML; } exit(1); } require_once __DIR__ . '/autoload.php'; // Sets default autoload mappings, may be overridden in Bootstrap::create \Magento\Framework\App\Bootstrap::populateAutoloader(BP, []); /* Custom umask value may be provided in optional mage_umask file in root */ $umaskFile = BP . '/magento_umask'; $mask = file_exists($umaskFile) ? octdec(file_get_contents($umaskFile)) : 002; umask($mask); if (empty($_SERVER['ENABLE_IIS_REWRITES']) || ($_SERVER['ENABLE_IIS_REWRITES'] != 1)) { /* * Unset headers used by IIS URL rewrites. */ unset($_SERVER['HTTP_X_REWRITE_URL']); unset($_SERVER['HTTP_X_ORIGINAL_URL']); unset($_SERVER['IIS_WasUrlRewritten']); unset($_SERVER['UNENCODED_URL']); unset($_SERVER['ORIG_PATH_INFO']); } if ( (!empty($_SERVER['MAGE_PROFILER']) || file_exists(BP . '/var/profiler.flag')) && isset($_SERVER['HTTP_ACCEPT']) && strpos($_SERVER['HTTP_ACCEPT'], 'text/html') !== false ) { $profilerConfig = isset($_SERVER['MAGE_PROFILER']) && strlen($_SERVER['MAGE_PROFILER']) ? $_SERVER['MAGE_PROFILER'] : trim(file_get_contents(BP . '/var/profiler.flag')); if ($profilerConfig) { $profilerConfig = json_decode($profilerConfig, true) ?: $profilerConfig; } Magento\Framework\Profiler::applyConfig( $profilerConfig, BP, !empty($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest' ); } date_default_timezone_set('UTC'); /* For data consistency between displaying (printing) and serialization a float number */ ini_set('precision', 14); ini_set('serialize_precision', 14);