Monday 20 October 2003 3:14:01 am
This my cron : */5 * * * * php -C /home/mysite/www/runcronjobs.php this will run runcronjobs.php each 5 minute ! should i change this to : */5 * * * * cd /home/mysite/www/;php -C runcronjobs.php ?! or should i make *.sh file with this 2 line and put on crontab :
cd /home/mysite/www/ php -C runcronjobs.php ?!?
|