Guest User

index.php

a guest
Feb 16th, 2016
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  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.  
  28.  
  29. if (version_compare(phpversion(), '5.2.0', '<')===true) {
  30. echo '<div style="font:12px/1.35em arial, helvetica, sans-serif;">
  31. <div style="margin:0 0 25px 0; border-bottom:1px solid #ccc;">
  32. <h3 style="margin:0; font-size:1.7em; font-weight:normal; text-transform:none; text-align:left; color:#2f2f2f;">
  33. Whoops, it looks like you have an invalid PHP version.</h3></div><p>Magento supports PHP 5.2.0 or newer.
  34. <a href="http://www.magentocommerce.com/install" target="">Find out</a> how to install</a>
  35. Magento using PHP-CGI as a work-around.</p></div>';
  36. exit;
  37. }
  38.  
  39. /**
  40. * Error reporting
  41. */
  42. error_reporting(E_ALL | E_STRICT);
  43.  
  44. /**
  45. * Compilation includes configuration file
  46. */
  47. define('MAGENTO_ROOT', getcwd());
  48.  
  49. $compilerConfig = MAGENTO_ROOT . '/includes/config.php';
  50. if (file_exists($compilerConfig)) {
  51. include $compilerConfig;
  52. }
  53.  
  54. $mageFilename = MAGENTO_ROOT . '/app/Mage.php';
  55. $maintenanceFile = 'maintenance.flag';
  56.  
  57. if (!file_exists($mageFilename)) {
  58. if (is_dir('downloader')) {
  59. header("Location: downloader");
  60. } else {
  61. echo $mageFilename." was not found";
  62. }
  63. exit;
  64. }
  65.  
  66. if (file_exists($maintenanceFile)) {
  67. include_once dirname(__FILE__) . '/errors/503.php';
  68. exit;
  69. }
  70.  
  71. require_once $mageFilename;
  72.  
  73. Varien_Profiler::enable();
  74.  
  75. if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) {
  76. Mage::setIsDeveloperMode(true);
  77. }
  78.  
  79. ini_set('display_errors', 1);
  80.  
  81. umask(0);
  82.  
  83. /* Store or website code */
  84. $mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : '';
  85.  
  86. /* Run store or run website */
  87. $mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'store';
  88.  
  89. Mage::run($mageRunCode, $mageRunType);
Add Comment
Please, Sign In to add comment