我使用Laravel 5.3.26并且无法将调度程序设置为自动运行,尽管我已准备好cron作业。
我'我创建了一个新命令ligmena:update
,下面是代码:
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use DB;
class ligmena extends Command {
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'ligmena:update';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Update';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct() {
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle() {
//
$today = strtotime("now");
$energa_symvolaia = DB::table('symvolaia')->where('eidos_kinisis', '1')->get();
foreach ($energa_symvolaia as $es) {
$imerominia_lixis = strtotime(str_replace("/", "-", $es->imerominia_lixis));
if ($today > $imerominia_lixis)
DB::table('symvolaia')->where('id', '<', $es->id)->update(['eidos_kinisis' => '4']);
}
}
}
?>
以下是Kernel.php
<?php
namespace App\Console;
use DB;
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\ligmena::class,
//
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule) {
// $schedule->command('inspire')
// ->hourly();
$schedule->command('ligmena:update')->everyMinute();
}
/**
* Register the Closure based commands for the application.
*
* @return void
*/
protected function commands() {
require base_path('routes/console.php');
}
}
?>
我已经设置了这样的cron作业:
php /home/site.com/public_html/testdemo/artisan schedule:run >> /dev/null 2>&1
它每分钟运行一次。
如果我手动运行该命令,它可以正常工作。
有什么建议吗?
答案 0 :(得分:0)
我使用原始mysql解决了这个问题。 cron作业运行正常,代码还可以,但它没有更改数据库。 在我改为原始mysql后,它运行良好