Member Since 1 Month Ago
4,920 experience to go until the next level!
In case you were wondering, you earn Laracasts experience when you:
Earned once you have completed your first Laracasts lesson.
Earned once you have earned your first 1000 experience points.
Earned when you have been with Laracasts for 1 year.
Earned when you have been with Laracasts for 2 years.
Earned when you have been with Laracasts for 3 years.
Earned when you have been with Laracasts for 4 years.
Earned when you have been with Laracasts for 5 years.
Earned when at least one Laracasts series has been fully completed.
Earned after your first post on the Laracasts forum.
Earned once 100 Laracasts lessons have been completed.
Earned once you receive your first "Best Reply" award on the Laracasts forum.
Earned if you are a paying Laracasts subscriber.
Earned if you have a lifetime subscription to Laracasts.
Earned if you share a link to Laracasts on social media. Please email [email protected] with your username and post URL to be awarded this badge.
Earned once you have achieved 500 forum replies.
Earned once your experience points passes 100,000.
Earned once your experience points hits 10,000.
Earned once 1000 Laracasts lessons have been completed.
Earned once your "Best Reply" award count is 100 or more.
Earned once your experience points passes 1 million.
Earned once your experience points ranks in the top 50 of all Laracasts users.
Earned once your experience points ranks in the top 10 of all Laracasts users.
Replied to Email Job Stuck In The Queue
I solved my problem by switching to the sync driver, and solving the displayed problem, then I retried with redis, I didn't work out, so I switched to the database queue driver, and it works.
Replied to Email Job Stuck In The Queue
Well my code was working when I send email normally, so I don't understand where is the problem.
Replied to Email Job Stuck In The Queue
I tried to set up another queue with php artisan queue:work --queue=emails
and using the onQueue method the emails go on the right queue but are still not processed.
Started a new Conversation Email Job Stuck In The Queue
I'm using Laravel to send email, it was working fine, but I don't want to interrupt user workflow on my app, so I chose to use the Queue for sending these email.
I have another jobs that handle file processing, that work without problem, but soon as I queue up an email, it doesn't work anymore.
I use redis as queue driver, the jobs seem to be inserted in redis, but never processed.
In dev, I use php artisan queue:work
the output is :
[2021-03-04 15:48:47][9i3nr2OcQXJ5c8AGZPJiEyWBYP4fwivS] Processing: App\Mail\RapportSent
And the job status never go green at processed, I tried to create a new Job that sends the email with my Mailable class and I also tried to use the queue() method, But nothing seems to work.
If it happened to anybody or if you have an idea.