Having trouble getting cron working :s
I have the cron module installed, but I'm having trouble getting curl jobs to run. LAMP box, other cron jobs on the server run fine, but I want to do this one through the website using the cron module so the client can adjust the timing of jobs as needed...they're not experienced enough to do it through ssh.
This is the command text:
curl
http://mysite.com/task/geocodeNo quotes around anything
It fails to run and I get emails that says:
curl: (7) couldn't connect to host
I added the IP of the server to MY_fuel.php like this:
$config['webhook_remote_ip'] = array('192.168.1.10'); /* I used my actual IP here not the IP listed */
Am I defining the command incorrectly?
Comments
My original cron command: curl http://mysite.com/task/geocode
Works just fine now