Tuesday 08 June 2010 5:02:20 am
Here is a copy of my crontab: # This must be set to the directory where eZ Publish is installed. EZPUBLISHROOT=/var/www/ez43webin # Location of the PHP Command Line Interface binary. PHP=/var/www/ez43webin/bin/php # Instruct cron to run the main set of cronjobs 35 6 * * * cd $EZPUBLISHROOT && $PHP runcronjobs.php -q 2>&1 # Instruct cron to run the "infrequent" set of cronjobs 20 5 * * 1 cd $EZPUBLISHROOT && $PHP runcronjobs.php -q infrequent 2>&1 # Instruct cron to run the "frequent" set of cronjobs 0,15,30,45 * * * * cd $EZPUBLISHROOT && $PHP runcronjobs.php -q frequent 2>&1 0,15,30,45 * * * * cd $EZPUBLISHROOT && $PHP runcronjobs.php -q frequent -s ezteamroom 2>&1
|