Laravel queues not working

后端 未结 9 1012
梦谈多话
梦谈多话 2020-12-31 01:02

I am using laravel queues for commenting on the facebook post. When ever i recieve data from facebook webhook, based on the recieved details i am commenting on the post. To

相关标签:
9条回答
  • 2020-12-31 01:34

    Don't make the same mistake as me,

    I was running php artisan queue:work in the wrong directory.

    Only wasted 30 minutes, could have been longer.

    0 讨论(0)
  • 2020-12-31 01:37

    For future readers of that questions , if queues were working before but no longer , just try to delete everything from the jobs table in the database , that worked for me .

    0 讨论(0)
  • 2020-12-31 01:45

    I had the same trouble, if you are using laravel 5.7, use this in .env file

    QUEUE_CONNECTION=database
    

    after, clear config cache like this

    php artisan config:cache
    
    0 讨论(0)
提交回复
热议问题