Ad
Queue Redis Are Not Fired On Laravel Forge
I use Laravel Forge to deploy my Laravel website.
Configuration of my .env for Redis and Queues:
QUEUE_CONNECTION=redis
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
I run Worker As Daemon from Laravel Forge. No entry in laravel.log.
I use this to fire queue on Redis:
ProcessJob::dispatch($article);
dispatch(new ProcessJob($article));
The problem is queue aren't fired...
Ad
Answer
I solved the problem with production in Environment (Optional)
on Laravel Forge Queue config.
Ad
source: stackoverflow.com
Related Questions
- → "failed to open stream" error when executing "migrate:make"
- → October CMS Plugin Routes.php not registering
- → OctoberCMS Migrate Table
- → OctoberCMS Rain User plugin not working or redirecting
- → October CMS Custom Mail Layout
- → October CMS - How to correctly route
- → October CMS create a multi select Form field
- → October CMS - Conditionally Load a Different Page
- → How to disable assets combining on development in OctoberCMS
- → October CMS - Radio Button Ajax Click Twice in a Row Causes Content to disappear
- → OctoberCms component: How to display all ID(items) instead of sorting only one ID?
- → In OctoberCMS how do you find the hint path?
- → How to register middlewares in OctoberCMS plugin?
Ad