I'm on shared hosting that will only allow me to schedule cron jobs as frequently as 5 minutes apart. In Laravel's documentation, it notes that the cron job should be run per minute. My schedule has a task running everyFiveMinutes().
It doesn't seem to be running, so I'm trying to figure out if it's because of this issue.
I'm not sure of the inner workings of task scheduling, but I can see how - if "everyFiveMinutes" literally looks for the number 5 or 0 in the time, it's possible that my shared hosting's cron job is running a different every 5 minutes, say minute 1 and minute 6.
But, if everyFiveMinutes just looks to see if there's something that hasn't been processed in 5 minutes (and I don't see how without a DB table), then this wouldn't be the problem and I'd need to search somewhere else. Any thoughts? Thanks!