Magento の組み込みの cron 機能を使用して 5 分ごとにタスクを実行する Magento 拡張機能を作成しましたが、うまく動作しません。
私の拡張設定 (etc/config.xml):
<config>
...
<crontab>
<jobs>
<featuredtopics_getnewtopics>
<schedule><cron_expr>*/5 * * * *</cron_expr></schedule>
<run><model>featuredtopics/cron::getNewTopics</model></run>
</featuredtopics_getnewtopics>
</jobs>
</crontab>
</config>
私の拡張 cron モデル (Model/Cron.php):
class Sodapop_Featuredtopics_Model_Cron {
public function getNewTopics() {
// Stuff
}
}
cron ジョブは問題なく開始されているようですが、終了することはありません。私は何かを返すことをサポートしていますか?
編集 詳しく調べたところ、スクリプトにエラーがあることがわかりました。