Cronjob keep Running

tabu82

Verified User
Joined
Dec 31, 2009
Messages
12
good day;
i need your help to understand this problem

ive setup a cron job in the cron file to run a php file every 23 hours :

* */23 * * * /usr/local/bin/php /home/virys/domains/s3bay.com/public_html/cron/autoflash.php

problem is that although the cron run every 23 hours - ok - but after it is started it keep running the php file every 5 minutes or so -

no other cron is set on cron file or anywhere ! so im puzzled :confused::confused:

if you have got a clue - let me know

with thanks
ray
 
* */23 * * *

the first * should say he to run every minuto in that hour.... maybe you should use

0 */23 * * *

to run it at :00 of the 23th hour ;)
 
Back
Top