我在我网站的子域上安装了我的 laravel 应用程序,并且我已经设置了 cronjob,但它没有触发。
我已经通过终端测试了我的命令并且它的触发很好,所以问题都是关于 cronjob 而不是我猜的我的命令/控制台。
代码
Does not work
1- /home/example.com/public_html/process.example.com && php artisan schedule:run >> /dev/null 2>&1
2- php /home/example.com/public_html/process.example.com && php artisan schedule:run >> /dev/null 2>&1
kernel.php
protected $commands = [
Commands\RenewInvoices::class,
];
protected function schedule(Schedule $schedule)
{
$schedule->command('renew:invoices')
->everyMinute();
}
任何想法?