I am trying to work out how to setup a Shell to run as a cron, I have created a TaskEmailerShell.php file at /app/Console/Command/TaskEmailerShell.php with the following code:
App::uses('CakeEmail', 'Network/Email');
class TaskEmailerShell extends AppShell {
public $uses = array('Task');
public function main()
{
// DO NOTHING
}
public function send()
{
// GENERATE AND SEND THE EMAIL
// ------------------------------------------------------------>
$email = new CakeEmail();
etc etc
I'm not sure what I need to put into the cron for the path to run this, I read the documentation but still wasn't sure. I have guessed the following but I don't think it is right.
/lib/Cake/Console/cake TaskEmailer send -cli /usr/bin -console /Cake/Console -app /app
I am currently getting this error:
/bin/sh: /lib/Cake/Console/cake: No such file or directory
Any suggestions where I am going wrong?
UPDATE. As mentioned in the comments I now have the cron running but it doesn't send the email and I am getting this in the email that comes though when the cron is sent.
[36mUsage:[0m
cake emailer [-h] [-v] [-q]
[36mOptions:[0m
--help, -h Display this help.
--verbose, -v Enable verbose output.
--quiet, -q Enable quiet output.
Thankyou
/lib/Cake/Console/cakedoesn't exist. Remember to use an absolute path, not a relative one. For example, if your site is actually on your server here:/var/www/my_sitethe cron path would be/var/www/my_site/lib/Cake/Console/cake ...– jeremyharris Nov 6 '12 at 23:45cakefile. This depends on your server setup. – jeremyharris Nov 6 '12 at 23:53cakefile (no extension). – jeremyharris Nov 7 '12 at 0:27