Support the ongoing development of Laravel.io →
posted 10 years ago
Queues

Happy holidays everyone! I have a file upload form where an image is being uploaded first to my server and then to Imgur. The upload to Imgur is supposed to be queued. So, once a new file is uploaded, I do a push:

`Queue::push('JobController@someJob',['v1'=>'something','v2'=>'something']);`

I used this to subscribe to the queue:

`php artisan queue:subscribe name http://url`

Now, I can see that this is working because I can see the subscription in IronMQ subscribed successfully

However, when I do an upload, the image uploads fine in my server and shows no error. But there are no message sent to IronMQ: No message shown on ironmq

Thus, those Imgur uploads are not happening either. I have tested everything and searched extensively, I haven't found any solutions to this yet. Any idea whats happening?

Last updated 3 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

ykbks ykbks Joined 19 Dec 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.