Reputation: 11
I have set up cron jobs for my SugarCRM as requested by Sugar:
But when we look at last runs it does not seem to work or show anything.
I am using this for email reminders, mail check and also scheduled campaign run.
Upvotes: 1
Views: 686
Reputation: 3950
php
on your system installed and the executable in whatever PATH that cronjob is using?/usr/bin/php
or /usr/local/bin/php
are common.
Also based on your operating system/distribution the php command line executable may have a different name, e.g. php5
.sudo -u webprocessusername
, so that the cronjob will be executed with the correct permissions.> /dev/null
e.g. with > /tmp/sugarcron.log
or > /path/to/webfolder/sugarcron.txt
and check the file after a minute.Further info on the SugarCRM Knowledge Base:
Upvotes: 2