Tuesday 5 December 2017

Configuring Email Campaign Schedulers in SugarCRM/SuiteCRM

In SugarCRM/SuiteCRM, we have to add cron jobs for running email campaigns successfully. so for scheduling it we have different methods for windows server & linux servers..

1) For Windows servers, we have to create a bat file & add it in windows task scheduler to run...
Create a bat file named schedler.bat , then put below content in that file.

cd C:\wamp\www\crmC:\wamp\bin\php\php5.3.4\php.exe -f cron.php

In Above script after CD , the location is where the crm is located... & then in the second line we have to mention the path of PHP exe located in your server, In my case location is that, it may vary for yours. so change according to that..

2) For Linux Server, we have to add command in cron jobs section..

    time            /usr/local/bin/php -q /home/user/public_html/CRM/cron.php >/dev/null 2>&1



No comments:

Post a Comment