v cron.php mám tento kód
<?php
/**
- Magento
-
- NOTICE OF LICENSE
-
- This source file is subject to the Open Software License (OSL 3.0)
- that is bundled with this package in the file LICENSE.txt.
- It is also available through the world-wide-web at this URL:
- http://opensource.org/licenses/osl-3.0.php
- If you did not receive a copy of the license and are unable to
- obtain it through the world-wide-web, please send an email
- to license@magento.com so we can send you a copy immediately.
-
- DISCLAIMER
-
- Do not edit or add to this file if you wish to upgrade Magento to newer
- versions in the future. If you wish to customize Magento for your
- needs please refer to http://www.magento.com for more information.
-
-
@category Mage
-
@package Mage
-
@copyright Copyright © 2006-2018 Magento, Inc. (http://www.magento.com)
-
@license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
// Change current directory to the directory of current script
chdir(dirname(FILE));
require ‘app/bootstrap.php’;
require ‘app/Mage.php’;
if (!Mage::isInstalled()) {
echo “Application is not installed yet, please complete install wizard first.”;
exit;
}
// Only for urls
// Don’t remove this
$_SERVER[‘SCRIPT_NAME’] = str_replace(basename(FILE), ‘index.php’, $_SERVER[‘SCRIPT_NAME’]);
$_SERVER[‘SCRIPT_FILENAME’] = str_replace(basename(FILE), ‘index.php’, $_SERVER[‘SCRIPT_FILENAME’]);
try {
Mage::app(‘admin’)->setUseSessionInUrl(false);
} catch (Exception $e) {
Mage::printException($e);
exit;
}
umask(0);
$disabledFuncs = array_map(‘trim’, explode(’,’, strtolower(ini_get(‘disable_functions’))));
$isShellDisabled = is_array($disabledFuncs) ? in_array(‘shell_exec’, $disabledFuncs) : true;
$isShellDisabled = (stripos(PHP_OS, ‘win’) === false) ? $isShellDisabled : true;
try {
if (stripos(PHP_OS, ‘win’) === false) {
$options = getopt(‘m::’);
if (isset($options[‘m’])) {
if ($options[‘m’] == ‘always’) {
$cronMode = ‘always’;
} elseif ($options[‘m’] == ‘default’) {
$cronMode = ‘default’;
} else {
Mage::throwException(‘Unrecognized cron mode was defined’);
}
} else if (!$isShellDisabled) {
$fileName = escapeshellarg(basename(FILE));
$cronPath = escapeshellarg(dirname(FILE) . ‘/cron.sh’);
shell_exec(escapeshellcmd("/bin/sh $cronPath $fileName -mdefault 1 > /dev/null 2>&1 &"));
shell_exec(escapeshellcmd("/bin/sh $cronPath $fileName -malways 1 > /dev/null 2>&1 &"));
exit;
}
}
Mage::getConfig()->init()->loadEventObservers('crontab');
Mage::app()->addEventArea('crontab');
if ($isShellDisabled) {
Mage::dispatchEvent('always');
Mage::dispatchEvent('default');
} else {
Mage::dispatchEvent($cronMode);
}
} catch (Exception $e) {
Mage::printException($e);
exit(1);
}