Cronjobs
Aus eZ Wiki
Entwurf
Diese Seite muss vervollständigt werden. Für Diskussionen und Rechercheergebnisse kann auch die Diskussionsseite genutzt werden.
ezpublish.cron
# This must be set to the directory where eZ Publish is installed. EZPUBLISHROOT=/path/to/the/ez/publish/directory # Location of the PHP Command Line Interface binary. PHP=/usr/local/bin/php # Instruct cron to run the main set of cronjobs # at 6:35am every day 35 6 * * * cd $EZPUBLISHROOT && $PHP runcronjobs.php -q 2>&1 # Instruct cron to run the "infrequent" set of cronjobs # at 5:20am every Monday 20 5 * * 1 cd $EZPUBLISHROOT && $PHP runcronjobs.php infrequent -q 2>&1 # Instruct cron to run the "frequent" set of cronjobs # every 15 minutes 0,15,30,45 * * * * cd $EZPUBLISHROOT && $PHP runcronjobs.php frequent -q 2>&1
eZ Flow
Ggf. für eZFlow auch jede Minute.
# run the eZ Flow Script every Minute # * * * * * cd $EZPUBLISHROOT && $PHP runcronjobs.php ezflow -q 2>&1
- Weblinks
- http://ez.no/doc/ez_publish/technical_manual/current/features/cronjobs/the_cronjob_scripts
- http://ez.no/doc/ez_publish/technical_manual/current/features/cronjobs/configuring_cronjobs
- http://ez.no/doc/ez_publish/technical_manual/current/features/cronjobs/running_cronjobs
