iTx Technologies offre gratuitement
cet espace pour Joomla !

title

Body

[fermer]

/ -> index.php (source)

   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  $maintenanceFile = 'maintenance.flag';
  47  
  48  if (!file_exists($mageFilename)) {
  49      if (is_dir('downloader')) {
  50          header("Location: downloader");
  51      } else {
  52          echo $mageFilename." was not found";
  53      }
  54      exit;
  55  }
  56  
  57  if (file_exists($maintenanceFile)) {
  58      $basePath = dirname($_SERVER['PHP_SELF']);
  59      include_once dirname(__FILE__) . '/errors/503.php';
  60      exit;
  61  }
  62  
  63  require_once $mageFilename;
  64  
  65  #Varien_Profiler::enable();
  66  
  67  if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) {
  68      Mage::setIsDeveloperMode(true);
  69  }
  70  
  71  #ini_set('display_errors', 1);
  72  
  73  umask(0);
  74  
  75  $mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : '';
  76  $mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'store';
  77  
  78  Mage::run($mageRunCode, $mageRunType);


Generé en: Wed Mar 3 09:28:21 2010 | Cross-referenced par PHPXref 0.7