Jump to content

Question

Posted

Hi I recently installed Blesta Invoicing system with Installatron from Godaddy but for some reason my cron command doesn't updated unless I run it manually

 

  I have a Web Host account with Godaddy which has CPanel.

 

Do I need to add anything Via CPanel

4 answers to this question

Recommended Posts

  • 0
Posted

If it helps anyone, my cron jobs stopped running after updating Blesta. (My server is using Plesk)

I was using:

 

/usr/bin/php /home_dir/user_dir/public_html/blesta/index.php cron

 

I am now switched to curl instead:

 

curl -L --max-redirs 1000 -v "https://yourdomain.com/blesta_dir/cron/?cron_key=your_cron_key" 1>/dev/null 2>/dev/null

 

regards

Trevor

 

## Update ##

Curl is a bit fussy about who issued the server certificate so if the above doesn't work try:

curl -L -k --max-redirs 1000 -v "https://yourdomain.com/blesta_dir/cron/?cron_key=your_cron_key" 1>/dev/null 2>/dev/null

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...