OroCRM Forums

Covering OroCRM topics, including community updates and company announcements.

This topic contains 7 replies, has 4 voices, and was last updated by  csaba79 9 years, 2 months ago.

Starting from March 1, 2020 the forum has been switched to the read-only mode. Please head to StackOverflow for support.

  • Creator
    Topic
  • #26250

    maroos
    Participant

    Hello Oro,

    I setup oro, installed mangeto connector and setup email sync setting.
    Only my data is not getting synced by the cronjob.
    When i run the command in ssh:

    # php app/console oro:cron –env prod

    I get back:
    Processing command “oro:cron:integration:sync”: skipped
    Processing command “oro:cron:cleanup”: skipped
    Processing command “oro:cron:imap-sync”: skipped
    Processing command “oro:cron:send-reminders”: added to job queue
    Processing command “oro:cron:import-tracking”: skipped
    Processing command “oro:cron:magento:cart:expiration”: skipped

    Anyone knows why???
    I need some help here….

    Thanks

Viewing 7 replies - 1 through 7 (of 7 total)
  • Author
    Replies
  • #26251

    Dima Soroka
    Keymaster

    You should have php app/console oro:cron –env prod command added to crontab with */1 * * * * schedule. It adds tasks to job queue based on configured command schedule and Job Queue runs it.

    We’ll have documentation on this topic available shortly.

    #26252

    Alexandr Smaga
    Participant

    Hello.

    Also please check that job queue daemon is running, if it’s not then please run it by command or from UI.

    #26253

    maroos
    Participant

    Hi,
    I set to cronjob as root instead of user, now it runs every minute.

    Thanks….

    #26254

    csaba79
    Participant

    Hi,

    i’m new in OroCRM, i also set it the cronjob it do runs in every minute..
    my question is> if i create a task with reminders should send the email notification automatically or just with the oro:cron:send-reminders command …
    1. when i create the task it send me a notification
    2. i set reminders, but if i dont execute the command(oro:cron:send-reminders) before the expiration date it won’t send the email…

    do i need to change something in code, or i missing something..

    and one more thing, i edited my crontab and i updated with the following command(is it correct?) :
    *1/ * * * * /usr/bin/php /var/www/orocrm/app/console –env=dev oro:cron >> /dev/null

    Thank you very much,
    CSaba

    #26255

    csaba79
    Participant

    it’s working now….
    *1/ * * * * /usr/bin/php /var/www/orocrm/app/console oro:cron >> /dev/null

    #26256

    csaba79
    Participant

    updated(edited) task with reminder, does not send reminder email just notification…
    how to solve this issue,…

    Thanks

    #26257

    csaba79
    Participant

    resolved……….

    missing row….

    public function setReminderData(ReminderDataInterface $data)
    {
    $this->setSubject($data->getSubject());
    $this->setExpireAt($data->getExpireAt());
    $this->setRecipient($data->getRecipient());
    +++ $this->setState(self::STATE_NOT_SENT);
    }

Viewing 7 replies - 1 through 7 (of 7 total)

The forum ‘OroCRM – Installation/Technical Issues or Problems’ is closed to new topics and replies.

Back to top