Laravel Cron作业在localhost中运行,但不在与cpanel共享的主机中运行

时间:2019-05-10 03:52:24

标签: laravel cron

我必须向订阅系统的成员发送自动电子邮件。当我在laravel项目和localhost上的cron作业中安排作业时,它每分钟都会正常运行。但是,当我将同一项目上载到共享主机时,计划的任务无法运行。谁能帮我解决这个问题?

我的CronTab:

SHELL="/bin/bash"
* * * * * php /home/tradiet1/public_html/tradiedemo/tradiepackage/artisan schdule:run

我的NotifyMembership更新:

namespace App\Console\Commands;

use Illuminate\Console\Command;
use App\Jobs\SendMembershipRenewalNotification;
use App\AppLog;
use Carbon\Carbon;
use App\User;

class NotifyMembershipRenewal extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'notify:membership_renewal';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Send notification email to users informing them their membership subscription is about to expire  .';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
        $args = request()->server('argv');
        $log = new AppLog;
        $log->url = url()->current();
        $log->details = "Cron started at: ".date('Y-m-d H:i:s')." in dir: ".__DIR__;
        $log->details .= "\r\n".' args: '.json_encode($args);

        \DB::enableQueryLog();

        $now = Carbon::now();
        $expiryInDays = 7;
        $from = $now->addDays($expiryInDays-1)->format('Y-m-d H:i:s');
        $to = $now->addDay()->format('Y-m-d H:i:s');

        $users = User::with('membership')
            ->where('role', 3)
            ->whereBetween('membership_expiry', [$from, $to])
            ->get();

        foreach($users as $key => $user)
        {
            dispatch(new SendMembershipRenewalNotification($user, $expiryInDays));
        }

        $log->details .= "\r\n Count: ".$users->count();
        $log->details .= "\r\n ".json_encode(\DB::getQueryLog())."\r\n \r\n";
        $log->save();

        $this->info($log->details);
    }
}

我的Kernel.php:

namespace App\Console;

use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
use App\AppLog;

class Kernel extends ConsoleKernel
{
    /**
     * The Artisan commands provided by your application.
     *
     * @var array
     */
    protected $commands = [
        // 
    ];

    /**
     * Define the application's command schedule.
     *
     * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
     * @return void
     */
    protected function schedule(Schedule $schedule)
    {
        $log = new AppLog;
        $log->details = "Inside Kernel@schedule";
        $log->save();
        $schedule->command('notify:membership_renewal')
                 ->everyMinute() // 22:00 UTC = 08:00 AEST
                 ->appendOutputTo('./app_log.txt')
                 ->emailOutputTo(env('APP_LOG_EMAIL'));

        /*$schedule->command('inspire')
                 ->hourly();*/
    }

    /**
     * Register the commands for the application.
     *
     * @return void
     */
    protected function commands()
    {
        $this->load(__DIR__.'/Commands');

        require base_path('routes/console.php');
    }
}

我的Crontab for localhost:

SHELL="/bin/bash"

* * * * * php /var/www/html/is/tradiedemo/tradiepackage/artisan schedule:run

我的实时共享托管服务器的Crontab

SHELL="/bin/bash"
* * * * * php /home/tradiet1/public_html/tradiedemo/tradiepackage/artisan schdule:run

cron作业在我的本地主机上正常运行,并且每分钟都会收到一封电子邮件,并且日志存储在数据库和文件中。但是,当我将项目转移到服务器时,cron作业每分钟运行一次,但计划的任务却不是每分钟运行一次。该任务甚至不会运行一次。

1 个答案:

答案 0 :(得分:1)

在共享主机中,您不能每分钟运行一次cron作业。因为它限制了共享主机(我猜是在Godaddy或Hostgator中)。这样您就可以像每隔15分钟每30分钟跑步一次。

  • 您也在这里{@ 3}读过它 但是,某些托管服务提供商也提供了此功能。

所以现在的问题是为什么它运行不正确。

它也发生在我身上。 register_argc_argv存在一些问题,但有时将其设置为on也不是最佳实践,而不是使用PHP。

您可以使用pho-cli做到这一点。 绝对可以。

像下面一样做

SHELL="/bin/bash" * * * * * php-cli -q /home/tradiet1/public_html/tradiedemo/tradiepackage/artisan schdule:run

希望它对您有用。

更新

因此,正如您所说,它不适用于您。所以有一个大概的解决方案。 为什么不对URL进行cron,这很容易并且可以处理任何共享的托管和Cpanel事情。

为此,您可以将wget用于URL。下面是与此相关的代码。

wget http://example.com/check

现在在您的路线功能上以编程方式运行您的工匠,如下所示。

Route::get('/check', function () {
            Artisan::call('schedule:run');
        });