Mahmoud Alrashidi نشر 29 مارس 2021 أرسل تقرير نشر 29 مارس 2021 قمت برفع مشروعي على الخادم و قمت بتطبيق cron job التالي: 1 * * * * php /home/webminder/public_html/artisan schedule:run >> /dev/null 2>&1 لا أدري لماذا لا يتنفذ كل دقيقة؟ هل هناك خطأ ما؟ أيضاً هناك مُشكلة أخرى أن السكربت لا يتنفذ من خلال cron job لكن إذا قمت بتنفيذه يدوياً يشتغل بشكل عادي. هذا ملف 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\Reminder::class ]; /** * Define the application's command schedule. * * @param \Illuminate\Console\Scheduling\Schedule $schedule * @return void */ protected function schedule(Schedule $schedule) { $schedule->command('reminder:renewal')->everyMinute(); } /** * Register the Closure based commands for the application. * * @return void */ protected function commands() { require base_path('routes/console.php'); } } و هذا ملف App\Console\Commands\Reminder.php: <?php namespace App\Console\Commands; use DB; use Illuminate\Console\Command; class Reminder extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'reminder:renewal'; /** * The console command description. * * @var string */ protected $description = 'Renewal Server, Web Hosting and Domain Name'; /** * Create a new command instance. * * @return void */ public function __construct() { parent::__construct(); } /** * Execute the console command. * * @return mixed */ public function handle() { DB::table('test')->insert(['name' => 'Testing']); } } لا أعرف مكان المشكلة. اقتباس
0 سمير عبود نشر 29 مارس 2021 أرسل تقرير نشر 29 مارس 2021 1 * * * * يعني أن الأمر سيعمل في الدقيقة الأولى من كل ساعة ، استخدم: * * * * * لتشغيل الأمر كل دقيقة. إذا كنت تقوم بتشغيل Laravel من حساب cPanel ، فيمكنك محاولة تحديد مسار PHP الكامل كالتالي: * * * * * /usr/local/bin/php /home/webminder/public_html/artisan schedule:run >> /dev/null 2>&1 1 اقتباس
السؤال
Mahmoud Alrashidi
قمت برفع مشروعي على الخادم و قمت بتطبيق cron job التالي:
لا أدري لماذا لا يتنفذ كل دقيقة؟ هل هناك خطأ ما؟
أيضاً هناك مُشكلة أخرى أن السكربت لا يتنفذ من خلال cron job لكن إذا قمت بتنفيذه يدوياً يشتغل بشكل عادي.
هذا ملف Kernel.php:
و هذا ملف App\Console\Commands\Reminder.php:
لا أعرف مكان المشكلة.
1 جواب على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.