Tuesday 25 May 2010 2:31:25 am
Hello Robin and Romeo,
If you wish to execute crons with ovh, then you can set them up in your manager: http://help.ovh.co.uk/HostingCron
Although, you will have more information on the french version, which you can then translate with google translate: http://guides.ovh.com/MutualiseCron As for ezflow, the cronpart, you need to execute to update the data of dynamic blocks is this called "ezflow" and is defined in the file /extension/settings/cronjobs.ini.append.php: You can run it at the root of your folder in the following way: >>> php runcronjobs.php ezflow I set it up my crontab in the following way:
------------------------
# This must be set to the directory where eZ Publish is installed.
EZPUBLISHROOT=/var/www/bayard/www
# Location of the PHP Command Line Interface binary. PHP=/usr/bin/php
# Every five minutes
*/5 * * * * su - www-data -c "cd $EZPUBLISHROOT && $PHP runcronjobs.php ezflow" > /tmp/ezflow.cron.log 2>&1 -------------------------
You also have nice information on setting up the crontabs on this page: http://ez.no/doc/ez_publish/technical_manual/4_x/features/cronjobs/running_cronjobs Good luck,
|