Re: [PHP] executing php scripts via cron

2004-05-19 Thread raditha dissanayake
Merlin wrote: Hi there, I am trying to run a php script via cron. Problem is, that it does not work if I include the whole path in crontab Currently it looks like: 0 6 * * * php /home/www/project/app_cron/follow_up_new_members.php > /dev/null does typing in php /home/www/project/app_cron/follow_

Re: [PHP] executing php scripts via cron

2004-05-18 Thread Clifford W. Hansen
Merlin, > 0 6 * * * php /home/www/project/app_cron/follow_up_new_members.php > /dev/ null That looks right to me, have you tried executing the command with the full path? I have a couple of php scripts running as cron jobs and web scripts... Also try "php -q scriptname" -q is for quiet which su

RE: [PHP] executing php scripts via cron

2004-05-18 Thread rich
> I am trying to run a php script via cron. Problem is, that it > does not work if I > include the whole path in crontab > > Currently it looks like: > 0 6 * * * php > /home/www/project/app_cron/follow_up_new_members.php > /dev/null > > Most likeley because the webserver root for the project is: >