I have a new Cpanel installation. I have set up Espocrm and imported date and it is looking great. Now I am trying to set up emails and got to the cron bit. Nothing works so I guess I need to set something up. I tried runnung www.mydomain.com/espo/cron.php and get 404 error. The cron.php file exists containing
$sapiName = php_sapi_name();
if (substr($sapiName, 0, 3) != 'cli') {
die("Cron can be run only via CLI");
}
include "bootstrap.php";
$app = new \Espo\Core\Application();
$app->runCron();
Sorry to ask for help but if anyone has succeeded and can spare some time to help I would be really grateful
Regards
Tony Ayling
$sapiName = php_sapi_name();
if (substr($sapiName, 0, 3) != 'cli') {
die("Cron can be run only via CLI");
}
include "bootstrap.php";
$app = new \Espo\Core\Application();
$app->runCron();
Sorry to ask for help but if anyone has succeeded and can spare some time to help I would be really grateful
Regards
Tony Ayling
Comment