Skip to content

Instantly share code, notes, and snippets.

@davidrushton
Created February 17, 2016 17:29
Show Gist options
  • Star 24 You must be signed in to star a gist
  • Fork 14 You must be signed in to fork a gist
  • Save davidrushton/b7229df4c73372402fc1 to your computer and use it in GitHub Desktop.
Save davidrushton/b7229df4c73372402fc1 to your computer and use it in GitHub Desktop.
Laravel 5 Database Queue - Shared Hosting
/usr/bin/php /path/to/artisan schedule:run >/dev/null 2>&1
<?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 = [
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
$path = base_path();
$schedule->call(function() use($path) {
if (file_exists($path . '/queue.pid')) {
$pid = file_get_contents($path . '/queue.pid');
$result = exec("ps -p $pid --no-heading | awk '{print $1}'");
$run = $result == '' ? true : false;
} else {
$run = true;
}
if($run) {
$command = '/usr/bin/php -c ' . $path .'/php.ini ' . $path . '/artisan queue:listen --tries=3 > /dev/null & echo $!';
$number = exec($command);
file_put_contents($path . '/queue.pid', $number);
}
})->name('monitor_queue_listener')->everyFiveMinutes();
}
}
register_argc_argv=On
@snrguy101
Copy link

Please not working for me on shared hosting and please where can I find the ini file

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment