cron jobs not run

hi,

I am newbie,

I had set cron jobs to update something on one time very day,
I had tested the script, it run fine,

but the cron jobs seem never run.

some help?

Thanks.

Is the cron daemon running, if not sure do

service crond restart

then test it by installing a dummy cron job like

* * * * * date >> /tmp/dates.txt

I am sure the services is start.

I will try "date >> /tmp/dates.txt"

Thanks.

you also have a cron log that may shed some light on what's going on...

# tail -9 /var/log/cron
Feb 13 07:01:01 myBOX crond[26926]: (root) CMD (run-parts /etc/cron.hourly)
Feb 13 07:10:01 myBOX crond[26948]: (root) CMD (/usr/lib/sa/sa1 1 1)
Feb 13 07:20:01 myBOX crond[26957]: (root) CMD (/usr/lib/sa/sa1 1 1)
Feb 13 07:30:01 myBOX crond[26967]: (root) CMD (/usr/lib/sa/sa1 1 1)
Feb 13 07:40:01 myBOX crond[26976]: (root) CMD (/usr/lib/sa/sa1 1 1)
Feb 13 07:50:01 myBOX crond[26994]: (root) CMD (/usr/lib/sa/sa1 1 1)
Feb 13 08:00:01 myBOX crond[27098]: (root) CMD (/usr/lib/sa/sa1 1 1)
Feb 13 08:01:01 myBOX crond[27111]: (root) CMD (run-parts /etc/cron.hourly)
Feb 13 08:10:01 myBOX crond[27181]: (root) CMD (/usr/lib/sa/sa1 1 1)

I had find out what is wrong, Thanks for all.