I have a website in the Internet and I need to run command php artisan queue:listen on its server. I installed putty, logged in and tried to execute it, but it says php command not found :C. How should I do it proper way and how long this comand will run?
Asked
Active
Viewed 515 times
1 Answers
0
Make sure you're positioned on the root of your proyect and run the command.
There´s also the option of running artisan commands programmatically:
Artisan::call('queue:listen');

Aarón Gutiérrez
- 1,400
- 3
- 16
- 41