0
I’m starting now with Laravel, I put a test project of it together with mongodb on an Amazon server, but after I enter the following single entry "* * * * php /path/to/Artisan Schedule:run >> /dev/null 2>&1" in CRONTAB as the excerpt in the documentation of the 'Scheduling' Standard teaches:
Starting The Scheduler Here is the only Cron entry you need to add to your server: * * * * * php /path/to/Artisan Schedule:run >> /dev/null 2>&1 This Cron will call the Laravel command Scheduler Every minute. Then, Laravel evaluates your scheduled tasks and runs the tasks that are due.
Below is the code I’m trying to execute...:
Below is the (Kernel.php) of the Standard I edited to call every minute what is in the method ;"Handle" in the previous print:
However, after all...my question is: I put the cron entry in the Linux crontab program so I can call my language, this is how the documentation asks for it... but after installing the cron with the command I mentioned at the beginning of the text, the method I mentioned before (Handle) does not execute, nothing happens... Someone could help me?
Without seeing your code, it is difficult to understand what you are trying to do. See more on [mcve].
– Victor Stafusa
I’ll go for... Thank you, Victor!
– erick
Read here: https://pt.meta.stackoverflow.com/a/5485/28595
– user28595