Skip to main content
1 vote
0 answers
30 views

I’m using Laravel 12 and I want to run a scheduled command every day at 07:00 UK (Europe/London) time, but my server is configured with UTC timezone. In my bootstrap/app.php I have and its working: $...
Ashwini Singh's user avatar
0 votes
0 answers
270 views

I'm working on a Laravel 11 project with PHP 8.3, hosted on an OVH Pro shared server. The project involves making API calls to write data to a blockchain. This API call is scheduled to run once a day ...
Equipe dev's user avatar
0 votes
2 answers
667 views

I am working on a Laravel project and have created a command with signature 'process:pending-reports'. When I run this using: php artisan process:pending-reports, it does the needful i.e. the script ...
Sagar Thatte's user avatar
0 votes
0 answers
340 views

In Laravel 7 I use supervisor in my production server(Ubuntu) to get some jobs running automatically. in local env everything work well. but in my production server every job queuing twice. This my ...
Zia's user avatar
  • 725
1 vote
1 answer
311 views

Something is wrong with command running on Laravel Forge via their scheduler. I have plenty of commands there already and all of hthem are running just fine. Scheduler setup is generic, it calls ...
Gino Pane's user avatar
  • 5,031
0 votes
1 answer
555 views

I am facing a peculiar issue with Laravel Scheduler where the cron expression '1/2 * * * *' is marked as invalid, even though it works perfectly fine when added directly to the crontab. The Laravel ...
Haris Wijayanto's user avatar
1 vote
1 answer
237 views

According to laravel 10 documentation, we can use other sub-minute time constraints (everySecond, everyTwoSeconds, etc) for intervals lesser than one minute; but none of the sub-minute seems to be ...
DAVID AJAYI's user avatar
  • 2,204
1 vote
1 answer
254 views

I am experiencing strange behavior of a process (Illuminate\Support\Facades\Process) running through Laravel 10 scheduler on a VPS and I really don't know how is this happening or how to fix this ...
Paulis's user avatar
  • 33
0 votes
1 answer
224 views

I have several processes that I want to chain using the laravel scheduler. <?php namespace App\Process; use App\Loggers\Logger; class UtilsProcess { public function test1() { ...
Arkaik's user avatar
  • 924
2 votes
1 answer
207 views

I have the laravel app running with Sail in EC2 Ubuntu AWS server. I already have the command emails:send-weekly that I have tested with both php artisan emails:send-weekly and ./vendor/bin/sail ...
Bryan Leonardo's user avatar
0 votes
0 answers
198 views

I have a laravel application hosted on a ubuntu server.While i was setting up the scheduler i ran this command on the terminal: php artisan schedule:run >> /dev/null 2>&1 Reading the ...
cdBreak's user avatar
  • 63
1 vote
1 answer
150 views

I want to run a command to remove all files under the folder 'allfiles/' root@admin:/home/admin/allfiles# find . -name '*' | xargs rm and it clears all files under allfiles I want to run the same ...
Anonymous Girl's user avatar
1 vote
0 answers
62 views

Users in the application save a reminder for example at 10:45 and the system should send an email or message to him every 30 minutes. the problem is time starts from 11 and sends the message to the ...
Ali's user avatar
  • 667
1 vote
1 answer
2k views

My hoster technically allows cronjob but with the limitation to php files. There is no way to access the crontab from a console. I can set it up in the administration UI only and I need to provide a ...
JanBoehmer's user avatar
1 vote
3 answers
4k views

I made an cronjob in cpanel for once per minute like this: and make a command for that like this: as you see I give the artisan path to that. and in this path :/home/{projcetname}/laravel/app/...
aref razavi's user avatar

15 30 50 per page
1
2 3 4 5
8