我们正在尝试为在 ubuntu 服务器中运行的 magento 站点设置 cron
我们正在尝试以下命令:
*/5 * * * * php -f /var/www/html/sitename/cron.php
但我们收到如下错误:
-bash: */5: No such file or directory
更新 1
更新 2 - 错误
PHP Warning: require(app/bootstrap.php): failed to open stream: No such file or directory in /var/www/html/sitename/cron.php on line 30
PHP Fatal error: require(): Failed opening required 'app/bootstrap.php' (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/html/sitename/cron.php on line 30
cron.php
<?php
// 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']);
Mage::app('admin')->setUseSessionInUrl(false);
umask(0);
$disabledFuncs = explode(',', ini_get('disable_functions'));
$isShellDisabled = is_array($disabledFuncs) ? in_array('shell_exec', $disabledFuncs) : true;
$isShellDisabled = (stripos(PHP_OS, 'win') === false) ? $isShellDisabled : true;
$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 = basename(__FILE__);
$baseDir = dirname(__FILE__);
shell_exec("/bin/sh $baseDir/cron.sh $fileName -mdefault 1 > /dev/null 2>&1 &");
shell_exec("/bin/sh $baseDir/cron.sh $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);
}
关于 cron
在这里引用维基百科
请查看此链接以获取有关 cron 的更多信息
查看 crontab
输出/查看当前用户的 crontab
要查看另一个用户的 crontab,您需要 sudo 权限
编辑 crontab
编辑您的用户 crontab
或通过其他用户
你的 cron 看起来如何
使用 php 的完整路径的可能 cron 行
或用于@Brian 提到的调试目的
这会写入一个名为的日志
cron-temp.log
文件/var/www/html/sitename/
关于参数
-q = 安静模式
你的待办事项
你在终端里输入这个吗?这是一个 cronjob 定义,而不是命令。这一行必须进入 /etc/crontab 用户也不见了...
我认为您在没有真正了解其工作原理的情况下从另一个站点复制此内容。如果是,请阅读一些有关 cron 的文档...