Sounds like your custom command wasn't deployed to production, or the code to register it didn't make it to production. Or a combination of both issues.
problem using Cron with Laravel 4.2 Command
Hi, first of all excuse me for my english!!
I want use a Laravel Command, that i've created, by calling it in a cron job. In my PC the command works fine by calling it in this way
php artisan command:MyCommand
but when i try to call in the cron job i've created in the production server of a Web Hosting
php /home2/dferdinw/public_html/ff4b/artisan command:MyCommand
i receive this error:
[InvalidArgumentException] Command "command:MyCommand" is not defined. Did you mean this? command:make
So, I've create e new cron job to read le list of command available in this way
php /home2/dferdinw/public_html/ff4b/artisan list
but in the list command:MyCommand doesn' t appear!
Any idea???
Please or to participate in this conversation.