Hi,
Go to admin -> schedulers to see the command for your system.
On windows, you need to create a scheduled task running :
Code:
> schtasks /create /sc minute /mo 2 /tn "SugarCron" /tr "D:\utils\SugarCRM\sugarcron.bat" /ru SYSTEM
My .bat file looked like this:
Code:
cd /d C:\Inetpub\wwwroot\SugarSuite
php -f cron.php
On linux, you need to edit the crontab for the web user (for me, it's apache)
Code:
> crontab -u apache -e
add the following line
Code:
*/2 * * * * cd <pathToSugarcrm>; php -f cron.php > /dev/null 2>&1
As for the "schedulers_created_by", I get the same...
Bookmarks