|
alex
you shouldn't need to re-start cron -- it re-loads all crontab changes automatically.
The reason your crontab entry didn't run was probably because cron couldn't find the php binary ... try again with the full path to your php binary e.g.
* * * * * /usr/bin/php -q /home/script.php > /dev/null 2>&1
hth
rich
|