我有statusUpdate.php文件 xampp \ htdocs \ project \ app \ Console \ Commands文件夹。
statusUpdate.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官方文档创建。
然后我在xampp \ htdocs \ project \ app \ Console文件夹中的Kernel.php中添加了\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作业命令是这样的:php /path/to/artisan schedule:run 1>> /dev/null 2>&1
现在在这种情况下命令不起作用&amp;这就是问题。我怎么解决呢?
答案 0 :(得分:14)
好。我按照你所说的给你答案。
Cron作业命令是这样的:
php /path/to/artisan schedule:run 1>> /dev/null 2>&1
路径应该是在工程师中找到工匠文件。像这样:
我们假设您的工匠档案位置为/var/www/artisan
,那么简单的答案就是这样:
php /var/www/artisan schedule:run 1>> /dev/null 2>&1
检查一下是否有效。谢谢!
<强>更新强>:
它应该是这样的。
答案 1 :(得分:12)
这对我来说很好用
/usr/local/bin/php /path/to/artisan schedule:run >> /dev/null 2>&1
答案 2 :(得分:2)
您应该将cPanel服务器中的命令添加为
/usr/local/bin/php /home/xyz/public_html/artisan schedule:run 1>> /home/xyz/public_html/log_laravel 2>&1
这会将所有日志保留在/home/xyz/public_html/log_laravel
Running scheduled command: '/opt/cpanel/ea-php71/root/usr/bin/php' 'artisan' SyncAPIOrders:orders > '/dev/null' 2>&1
在我的情况下,cron Job无法正常工作,如果您要将该命令安排为每天一次(即00:00),而在{{1 }}对象
如果命令不正确,我过去常常在我的电子邮件中收到此警告
$schedule->command();
在PHP Warning: Module 'magickwand' already loaded in Unknown on line 0
Status: 404 Not Found
X-Powered-By: PHP/5.6.37
Content-type: text/html; charset=UTF-8
No input file specified.
中,您应指定
Kernel.php