13* * * * means run 13 minutes after the hour, every hour.
However, you need to put a space between the 13 and the star:
13 * * * *
The instructions tell you to set it up like this:
1 3 * * * GET http://yourdomain.com/cron.php > /dev/null
notice the spaces between the numbers/stars? That means run the command 1 minute after the hour, but only if the hour is 3 am.
When using a URL as the command you must use GET in front of it. Make sure you have your job looking exactly as it does in the readme file
|