【发布时间】:2014-04-26 15:17:51
【问题描述】:
我一直遇到 Magento 和 cron 作业无法运行的问题。我的托管公司似乎不允许使用 cron.sh 的某些参数(ps 是其中之一),因此 shell 脚本在 cron 作业运行之前失败。由于我在 cpanel 中的 cron 声明了完整路径,我想知道是否可以从 cron.sh 中删除某些行,例如。
#!/bin/sh
# location of the php binary
if [ ! "$1" = "" ] ; then
CRONSCRIPT=$1
else
CRONSCRIPT=cron.php
fi
MODE=""
if [ ! "$2" = "" ] ; then
MODE=" $2"
fi
PHP_BIN=`which php`
# absolute path to magento installation
INSTALLDIR=`echo $0 | sed 's/cron\.sh//g'`
# prepend the intallation path if not given an absolute path
# if [ "$INSTALLDIR" != "" -a "`expr index $CRONSCRIPT /`" != "1" ];then
# if ! ps auxwww | grep "$INSTALLDIR$CRONSCRIPT$MODE" | grep -v grep 1>/dev/null 2>/dev/null ; then
# $PHP_BIN $INSTALLDIR$CRONSCRIPT$MODE &
# fi
#else
# if ! ps auxwww | grep "$CRONSCRIPT$MODE" | grep -v grep | grep -v cron.sh 1>/dev/null 2>/dev/null ; then
$PHP_BIN $CRONSCRIPT$MODE &
# fi
#fi
有谁知道这是否可行,是否有任何缺点/后果?
【问题讨论】: