如何运行工匠命令时间表:在托管服务器上运行?(拉拉维尔)
2022-08-30 20:54:04
我在 xampp\htdocs\project\app\Console\Commands 文件夹中有 statusUpdate.php 文件。
状态更新.php :
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use DB;
class statusUpdate extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'status:update';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Update Job status daily';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$affected = DB::table('jobs')->update(array('status' => 1));
}
}
它由以下Laravel官方文档创建。然后我在内核中被添加到类.php在xampp\htdocs\project\app\Console文件夹中。\App\Console\Commands\statusUpdate::class,
以下是 karnel.php 文件代码:
<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
\App\Console\Commands\statusUpdate::class,
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
$schedule->command('status:update')
->everyFiveMinutes();
}
}
然后我被跑了
php artisan schedule:在Windows 7上使用CMD运行命令。
现在它工作正常(在本地服务器中)。我的作业表状态字段已正确更新 1。
但是当我在共享主机上部署此项目并在cPanel中为我的服务器添加CRON命令时:
Cron job 命令是这样的:php /path/to/artisan schedule:run 1>> /dev/null 2>&1
现在在这种情况下,命令不起作用,这就是问题所在。我该如何解决?