Announcement

Collapse
No announcement yet.

Cron Working but scheduled jobs has no data

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Cron Working but scheduled jobs has no data

    Hey all,

    So I migrated our server to Google Cloud via bitnami and I set up the cron, permissions, and ensured my php settings are good. The Scheduled Jobs is showing No Data but I am seeing the cron running in apache..

    Oct 12 03:16:01 bitnami-espocrm-dm-95f3 CRON[4437]: (bradaks) CMD (cd /opt/bitnami/apps/espocrm/htdocs; /bitnami/lampstack-linux-x64/output/php/bin/php -f cron.php > /dev/null 2>&1)

    I've reset the server but it's still not running the scheduled jobs. Any ideas? No Espo log to look at.

  • #2
    Was odd. In bitnami it seems that the cron is not the line from scheduled jobs that you would think it would be. I had to route through the files and came up with:

    * * * * * cd /opt/bitnami/apps/espocrm/htdocs; sudo -u daemon /opt/bitnami/php/bin/php cron.php > /dev/null 2>&1 NOT * * * * * cd /opt/bitnami/apps/espocrm/htdocs; /bitnami/lampstack-linux-x64/output/php/bin/php -f cron.php > /dev/null 2>&1Actions

    Comment

    Working...
    X