I am using Beanstalkd and Supervisor on Laravel 4.1. The program is running when I check the status in supervisorctl, but its not doing the "php artisan queue:listen" command, it's just spamming the above error in the Laravel log. Running "php artisan queue:listen" manually in the Laravel folder does work however.
Is something wrong with my program in the conf file I made? (see above post for program)
just out of curiosity, did you have any luck here? i'm stuck in the same exact spot - running it manually works fine, and supervisor will work on a stage version of the app, but not on my production environment
If you are working with an artisan command, it is necessary to register the new command created with:
php artisan command:make CronJobsCommand --command=myapp:cronjobs
adding the following line at myapp/app/start/artisan.php:
Artisan::resolve('CronJobsCommand');
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community