我的网站有问题。我们的订单会自动取消。可能有时间设置在某个地方,但我无法找到。我检查cron模块,但我认为这不是这个问题的责任。
$now = time();
$timeAhead = $now + $scheduleAheadFor;
$schedule->setJobCode($jobCode)
->setCronExpr($cronExpr)
->setStatus(Mage_Cron_Model_Schedule::STATUS_PENDING);
for ($time = $now; $time < $timeAhead; $time += 60) {
$ts = strftime('%Y-%m-%d %H:%M:00', $time);
if (!empty($exists[$jobCode.'/'.$ts])) {
// already scheduled
continue;
}
if (!$schedule->trySchedule($time)) {
// time does not match cron expression
continue;
}
$schedule->unsScheduleId()->save();
}
请告诉我在哪里更改时间或完全禁用此自动取消功能。