Reputation: 95
I wanted to run a cron job URL every 5 minutes and I am trying the following:
*/5 * * * * curl http://ur-views.com/gramlater/queue_processor.php`
But I get the following error:
Upvotes: 0
Views: 461
Reputation: 41
Remove the */5 * * * * from the command section.
You only need the actual command in there, the bit above handles the frequency that it's executed.
Upvotes: 2