Hey,
My Current settings is Server API Apache 2.0 Handler.
Theres this php file that i want to run in cron at interval of 10 minutes.
My crontab has the following entry :-
But the last cron line is not working due to (waht i feel) server api being set to apache 2.0 handler.
Please advice
My Current settings is Server API Apache 2.0 Handler.
Theres this php file that i want to run in cron at interval of 10 minutes.
php -q /var/www/extra/cron/cron.php
My crontab has the following entry :-
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
# m h dom mon dow user command
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --repo$
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --repo$
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --repo$
*/5 * * * * root /usr/local/sbin/resched.sh > /dev/null 2>&1
*/10 * * * * root /usr/bin/php -q /var/www/extra/cron/cron.php
#
But the last cron line is not working due to (waht i feel) server api being set to apache 2.0 handler.
Please advice