Hi there. I have a crontab entry that looks like this...
1 /usr/local//lib/php /test/homepages/29/db/htdocs/cron.php >/dev/null Is this the correct syntax so I can get it to run every minute.
No, that runs at HH:01, every hour. /1 /usr/local//lib/php /test/homepages/29/db/htdocs/cron.php >/dev/null
This would work on most crontabs. The slash indicates an interval.
resolved. Than ks