Cronjob setup for laravel 4.2 in cpanel - laravel

I am using laravel 4.2. I have created command file for cron job and added it into artisan file. I tested it in command. Everything is working fine in localhost. In Cpanel server I gave command path like,
php /home/fridayburr/public_html/version1/artisan active:user 1>> /dev/null 2>&1
But cron job is not working.

This is how I did in my shared Hosting using CPANEL
Here CRON Task is set on UNIX, to run every minute.
Add the schedule call with appropriate time schedule.
laravel Schedule documentation

Related

Laravel Cron Job not running over ubuntu server

I have a laravel application setup over Ubuntu server using Nginx. Here I have the cron jobs. I was facing an issue, that the server was not automatically picking up changes on Jobs Files. So I googled the things, and found a command from this article which I ran;
php artisan queue:restart
Since I have run this command, now no job is running even. I am also trying with simple HeartbeatJob to log info but it is also not working. When I do php artisan schedule:run,
no error in particular just screen output as:
[2021-09-11T08:41:32+00:00] Running scheduled command: App\Jobs\Heartbeat
But nothing happens. Any idea what this queue command has done wrong and how I make my jobs working again?
Your cron job will need the absolute path to artisan, so should look something like :
php /home/user/site.com/artisan queue:restart
You may also need to specify the queue with :
php /home/user/site.com/artisan queue:restart --queue=nameofqueue

How to automatically call laravel cron jobs while website is running

I am working with task scheduling in laravel. It's working well by using artisan command in cmd. But what's the problem with automatically calling the task on server. It's not running every minute.
https://laravel.com/docs/8.x/scheduling#running-the-scheduler
You will need to setup a cron job on your server that calls your scheduler
If you using Laravel Scheduler, you have to access in your server via ssh.
ssh user#<IP-address>
edit crontab file to call every minute php artisan schedule:run artisan command.
So:
* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1
If it not start,try to restart the web server. If you are using nginx, for ex.: sudo systemctl restart nginx

Laravel Queue queue:work running in background in Shared hosting(CPanel)

In my project, I've made a simple newsletter system where I want to send an email to all subscribers. But the problem I faced in production (Cpanel hosting) I have to run laravel queue:work command in terminal. Can anyone tell me how to handle queue:work in background in CPanel hosting...
can anyone tell me how to handle this problem?
For sending the mail I'm using the cpanel mail smtp not using any other third party like mailchimp or mailgun etc...
**find crob job tab into your cpanel then set the cron job **
like
daily
after 5minutes or whatever you want
make a job to handle the user news letters like
php artisan make:job UserNewsLetters
and then make a email
php artisan make:mail NewsLetterEmail
make a view into mail/newsletter
access the mailabel into your job set cron job path to your project folder like this /usr/local/bin/php /home/hosting_user/public_html/artisan queue:work or you can utilize laravel console commands https://laravel.com/docs/8.x/scheduling
please check this image and set cron job not run commandline
add this command into your cron task with full php path
php /path/to/laravel/artisan queue:work --stop-when-empty
to check php path run this in commandline
which php
cron task have these options to run your job
1-once per minute (mean job only run once in one minute so once per minute mean it will run 60 times in One Hour)
2-Every day mean once in 24hr
3- weekly job run once in a week
you can also make console commands for schedule your task and laravel have clear documentation Task Scheduling

Magento cron job stuck sometines

We are having 1 strange issue with cron in magento 1.9.3.
We set cron to run once per minute. It is working proper when we set. But it automatic stops working and cron set to once per 15 minutes on server.
Is there any issue with admin config or this is problem of hosting server?
cron command is php -f Path/To/File/cron.php >/dev/null 2>&1
Also tried using cron.sh but still have same issue..
Please advice..

PHP-CLI Command Not Found

Now I just moved to inmotion from siteground and previously from bluehost. I am trying to set up my laravel(lumen) application on the server. I have been able to get everything else working but the scheduler which I just cannot seem to get to work.
This is the cron job php -q /home/xxxxx/xxxxx/artisan schedule:run which seem to run fine however it fails to execute the queue:work command.
I noticed on my previous hosting I had to edit the Illuminate\Console\Scheduling\Scchedule.php file like this:
return $this->exec("php-cli /home/xxxxx/xxxxx/artisan {$command}", $parameters);
using the regular php command did not work for some reason I had to use php-cli, however with my current hosting it says "command not found" whenever I try to use the php-cli command manually and all my cron job returns in my email is this:
Running scheduled command: php-cli /home/xxxxx/xxxxx/artisan queue:work > '/dev/null' 2>&1 &
I would like to know how I can fix this and get the scheduler to work.
Yes I have php installed. (v7.0)
Yes I have the php-cli package installed. (v7.0)
My VPS server uses linox OS.
You do write absolute route to php-cli command and artisan script to properly work:
/usr/local/php70/bin/php-cli /home/{username}/{path-to-app}/artisan schedule:run >> /dev/null 2>&1

Resources