While installing on windows 10 after the step 2, I get the below message.
In order to run the SuiteCRM schedulers, create a batch file to run using Windows Scheduled Tasks. The batch file should include the following commands:
cd C:\wamp\www\SuiteCRM
php.exe -f cron.php
I am not an expert in WAMP installation Can someone please guide how to do the above step
it has been a while since I used wamp, I am using either lamp or windows/IIS so I am not your best adviser, but I will give it a try if you work on your side…
what was the error you got when you ran the php.exe command?
you should find out the path of your php directory, on my development machine it is “C:\Program Files (x86)\PHP\v5.3”
you should alson know what is the path of the cron.php file, on my machine it is “C:\inetpub\wwwroot\sugarcrmdev\boo”
so try from command prompt
c: (enter)
cd C:\inetpub\wwwroot\sugarcrmdev\boo (enter) (actually the path to your cron.php file)
then type the path of your php.exe program, like I would do:
C:\Program Files (x86)\PHP\v5.3\php.exe -f cron.php
so what I just did:
I specified the executable and its path (C:\Program Files (x86)\PHP\v5.3\php.exe)
and I instruct what php script to run which is un the curren directory …