0
votes

I use queues and have a jobs table in database. jobs are inserted to jobs table but when enter "php artisan queue:work --queue=something" command nothing happens. I have another project which use the same .env file and same queue and it works correctly. I have tried php artisan config:clear but it is still the same. What is the problem?

PS C:\xampp\htdocs\deneme> php artisan queue:work 
PHP Warning:  Module "mysqli" is already loaded in Unknown on line 0
QUEUE_DRIVER=database
The error is indicating you're trying to load the mysqli extension twice. Check your php.ini that is used for the CLI PHPapokryfos
It's just a warning. That's not the cause.iruoy