|
if i type this line from ssh
php /home/script.php > /dev/null
the script.php is executed
but if i write this line in crontab:
* * * * * php /home/script.php > /dev/null
or
30 7 * * * php /home/script.php > /dev/null
is not executed..
what can be the problem?
|