Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 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@magento.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.magento.com for more information.
  20. *
  21. * @category Mage
  22. * @package Mage
  23. * @copyright Copyright (c) 2006-2017 X.commerce, Inc. and affiliates (http://www.magento.com)
  24. * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  25. */
  26. if (version_compare(phpversion(), '5.2.0', '<')===true) {
  27. 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>';
  28. exit;
  29. }
  30.  
  31. require '../app/bootstrap.php'; // added ../ here because of subfolder
  32.  
  33. /**
  34. * Compilation includes configuration file
  35. */
  36. $compilerConfig = 'includes/config.php';
  37. if (file_exists($compilerConfig)) {
  38. include $compilerConfig;
  39. }
  40.  
  41. $mageFilename = '../app/Mage.php'; // added ../ here because of subfolder
  42.  
  43. if (!file_exists($mageFilename)) {
  44. if (is_dir('downloader')) {
  45. header("Location: downloader");
  46. } else {
  47. echo $mageFilename." was not found";
  48. }
  49. exit;
  50. }
  51.  
  52. require_once $mageFilename;
  53.  
  54. #Varien_Profiler::enable();
  55.  
  56. if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) {
  57. Mage::setIsDeveloperMode(true);
  58. }
  59.  
  60. #ini_set('display_errors', 1);
  61.  
  62. umask(0);
  63.  
  64. $mageRunCode = 'tn1'; // your website code
  65. $mageRunType = 'website'; // runType is website
  66.  
  67. Mage::run($mageRunCode, $mageRunType);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement