|
iTx Technologies offre gratuitement
|
||
[Vue sommaire] [Imprimer] [Vue textuelle]
1 <?php 2 /** 3 * Magento 4 * 5 * NOTICE OF LICENSE 6 * 7 * This source file is subject to the Open Software License (OSL 3.0) 8 * that is bundled with this package in the file LICENSE.txt. 9 * It is also available through the world-wide-web at this URL: 10 * http://opensource.org/licenses/osl-3.0.php 11 * If you did not receive a copy of the license and are unable to 12 * obtain it through the world-wide-web, please send an email 13 * to license@magentocommerce.com so we can send you a copy immediately. 14 * 15 * DISCLAIMER 16 * 17 * Do not edit or add to this file if you wish to upgrade Magento to newer 18 * versions in the future. If you wish to customize Magento for your 19 * needs please refer to http://www.magentocommerce.com for more information. 20 * 21 * @category Mage 22 * @package Mage 23 * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) 24 * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) 25 */ 26 27 if (version_compare(phpversion(), '5.2.0', '<')===true) { 28 echo '<div style="font:12px/1.35em arial, helvetica, sans-serif;"><div style="margin:0 0 25px 0; border-bottom:1px solid #ccc;"><h3 style="margin:0; font-size:1.7em; font-weight:normal; text-transform:none; text-align:left; color:#2f2f2f;">Whoops, it looks like you have an invalid PHP version.</h3></div><p>Magento supports PHP 5.2.0 or newer. <a href="http://www.magentocommerce.com/install" target="">Find out</a> how to install</a> Magento using PHP-CGI as a work-around.</p></div>'; 29 exit; 30 } 31 32 /** 33 * Error reporting 34 */ 35 error_reporting(E_ALL | E_STRICT); 36 37 /** 38 * Compilation includes configuration file 39 */ 40 $compilerConfig = 'includes/config.php'; 41 if (file_exists($compilerConfig)) { 42 include $compilerConfig; 43 } 44 45 $mageFilename = 'app/Mage.php'; 46 47 if (!file_exists($mageFilename)) { 48 if (is_dir('downloader')) { 49 header("Location: downloader"); 50 } else { 51 echo $mageFilename." was not found"; 52 } 53 exit; 54 } 55 56 require_once $mageFilename; 57 58 #Varien_Profiler::enable(); 59 60 if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) { 61 Mage::setIsDeveloperMode(true); 62 } 63 64 #ini_set('display_errors', 1); 65 66 umask(0); 67 68 $mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : ''; 69 $mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'store'; 70 71 Mage::run($mageRunCode, $mageRunType);
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
|
|
|
|