Welcome Guest, Not a member yet? Register   Sign In
Automatic mail sending
#4

[eluser]Roy MJ[/eluser]
Hey,
Ive tried doing the cron job. But i cant find a way as to how the command will be like so that i can add a cron job via cpanel.

* * * * * /usr/local/bin/php -q /home/public_html/system/application/controller/cron.php

But i dont see it working. My cron.php looks like this :

Code:
<?php
class Cron extends My_Controller {
    function cleancache(){
        parent::My_Controller();
        $this->load->model('admin/News_subscribe_model');
        * * * * * /usr/local/bin/php5 $HOME/system/scripts/clean_cache.php
        if($_SERVER['SCRIPT_FILENAME'] != 'clean_cache.php')
          exit;
        
    }
    function index(){
              
                    $to = "[email protected]";
                    $fromemail = $this->config->item('admin_email');
                    $subject = "hi";
                    $message = "heloooooooo";
                    $fromname = "Aroma";
                    mail($to, $subject, $message, "From: $fromname<$fromemail>" );
        }
      
}

?&gt;

Can u please find what im doing wrong here. In cpanel i gave this command as cron job..

Code:
$HOME/system/application/controller/cron.php


Messages In This Thread
Automatic mail sending - by El Forum - 01-12-2011, 02:45 AM
Automatic mail sending - by El Forum - 01-12-2011, 04:06 AM
Automatic mail sending - by El Forum - 01-12-2011, 04:27 AM
Automatic mail sending - by El Forum - 01-14-2011, 03:27 AM
Automatic mail sending - by El Forum - 01-14-2011, 03:32 AM
Automatic mail sending - by El Forum - 01-14-2011, 03:34 AM
Automatic mail sending - by El Forum - 01-14-2011, 03:37 AM
Automatic mail sending - by El Forum - 01-14-2011, 04:04 AM
Automatic mail sending - by El Forum - 01-14-2011, 04:10 AM
Automatic mail sending - by El Forum - 01-14-2011, 04:18 AM
Automatic mail sending - by El Forum - 01-14-2011, 04:20 AM
Automatic mail sending - by El Forum - 01-14-2011, 04:20 AM
Automatic mail sending - by El Forum - 01-14-2011, 04:25 AM
Automatic mail sending - by El Forum - 01-14-2011, 04:39 AM
Automatic mail sending - by El Forum - 01-14-2011, 04:43 AM
Automatic mail sending - by El Forum - 01-14-2011, 04:45 AM
Automatic mail sending - by El Forum - 01-14-2011, 04:48 AM
Automatic mail sending - by El Forum - 01-14-2011, 04:48 AM
Automatic mail sending - by El Forum - 01-14-2011, 04:52 AM



Theme © iAndrew 2016 - Forum software by © MyBB