• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Using SugarCRM Crontab with Plesk CP

T

theblackbubble

Guest
Hi!

We are running SugarCRM Community Edition on a Ubuntu VPS from Webfusion. Our problem is how we set-up the Crontab functions through the Plesk CP?

The SugarCRM crontab command is...

* * * * * cd /var/www/vhosts/theforrestercorporation.com/subdomains/crm/httpdocs; php -f cron.php > /dev/null 2>&1

It seems the crontab function, set-up through domains crontab button, gets to the directory, but fails to action the command.

Any help would be appreciated.

Our system details...
SugarCRM CE 5.0.0.0b
PHP 4.4.2.
MySQL 5.0.22
Plesk 8.3.0
Linux Ubantu

Cheers
Stuart
 
Put it in the admin cron (root or ideally apache) rather than the domain's cron.

Other things to try: Instead of cd /var/www/vhosts/theforrestercorporation.com/subdomains/crm/httpdocs; php -f cron.php > /dev/null 2>&1 why not try

wget http://crm.theforrestercorporation.com/cron.php (or however you would get to that file from the net anyway)

or

php -f /var/www/vhosts/theforrestercorporation.com/subdomains/crm/httpdocs/cron.php

Do it yourself from the command line - see what happens. Any errors?
 
Thank You!

Hi Faris,

I put the wget command at the root level and it seems to be running!

Many thanks for your help :)

Cheers
Stuart
 
Back
Top