Chris, I'm not sure what the objective of the cron job is but this curl command
curl -s -o /dev/null http://www.domain.com/daemons/nicebook won't output anything since it has the output (-o) going to the null device. To see what will result "normally" then do the curl -o <some file> "http://www.domain.com/daemons/nicebook" I add the double quotes around the URL just to be safe. Rick On Jun 16, 2:16 am, internetchris <[email protected]> wrote: > Hey everyone, > > Forgive me if I sound like an idiot. I haven't setup a cron job in the > past and I feel I am either missing files or I simply don't > understand. For a school project a friend of mine is trying to setup a > web application(written in cake php). I'm trying to give him a hand, > but I'm not familiar with cron jobs. After he downloaded it, it had > instructions to setup a cron job. When I setup the cron job I provide > this for the path... > > curl -s -o /dev/nullhttp://www.domain.com/daemons/nicebook > > I have noticed in the files that there isn't a directory called > "daemons" and I can't follow this path to anywhere? In setting up a > cron job I would think that the location in the above URL would > contain some sort of script file. I have the cron job set to e-mail > me, but I haven't recieved any e-mails. Am I right in my assumptions, > or am I misunderstanding something? > > Any help would be appreciated. > > Chris --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
