0

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?

Batmannn
  • 237
  • 4
  • 12

1 Answers1

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