Frequently Asked Question
How to setup cronjob for DbFace?
Last Updated 5 years ago
For Linux or OSX system:
sudo crontab -einput
10 1 * * * php /var/www/dbface/index.php cron your-crontab-key >> /var/www/dbface/user/logs/cronlog.logPlease find your-crontab-key in config/config.inc.php file
// crontab execution keyThis will execute the cronjob every 10 minutes, All DbFace jobs depends this scheduled job to execute.
$config['crontab_execution_key'] = 'your-cronjob-execution-key-is-here';