(02-06-2016, 12:39 PM)craig@rtech.co.nz Wrote: Hey guys,I use joomla to, but for jomsocial. I dont use Sentoras cron, but crontab instead.
I need to setup a cronjob like :
my_domain_name/index.php?option=com_easysocial&cron=true&phrase=nottellingyou
Comes up with script not found however :
my_domain_name/index.php
Creates the cronjob fine.
So Im guessing Sentora, thinking it's a smart cookie looks for the file name which doesn't exist beyond index.php and spits the dummy. Any ideas on how to fix?
Craig
crontab -e
This is mine:
*/10 * * * * lynx -source "http://www.my_domain/index.php?option=com_community&task=cron" > /dev/null
Every 10 min it checking jomsocial for sending email or transcode.
If you dont have lynx, just install it with apt-get install lynx