|
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 require 'app/Mage.php'; 28 29 if (!Mage::isInstalled()) { 30 echo "Application is not installed yet, please complete install wizard first."; 31 exit; 32 } 33 34 // Only for urls 35 // Don't remove this 36 $_SERVER['SCRIPT_NAME'] = str_replace(basename(__FILE__), 'index.php', $_SERVER['SCRIPT_NAME']); 37 $_SERVER['SCRIPT_FILENAME'] = str_replace(basename(__FILE__), 'index.php', $_SERVER['SCRIPT_FILENAME']); 38 39 Mage::app('admin')->setUseSessionInUrl(false); 40 41 try { 42 Mage::getConfig()->init()->loadEventObservers('crontab'); 43 Mage::app()->addEventArea('crontab'); 44 Mage::dispatchEvent('default'); 45 } catch (Exception $e) { 46 Mage::printException($e); 47 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
|
|
|
|