如何使用浏览直接URL执行Cron作业

时间:2013-09-14 06:19:55

标签: php codeigniter cron

我的应用程序在hostgater.com上运行。 我在服务器中创建了一个Cron作业调度程序并设置了所有这些参数。

它运作良好

command parameter like /home3/user/public_html/sendemial.php.

它没有工作我尝试执行MVC控制器动作URL,如

command parameter like http://voola.org/user/sendemail

我也试过使用iframe,但它不起作用。我非常担心在Hostgater服务器上执行直接URL。

任何帮助将不胜感激:)

2 个答案:

答案 0 :(得分:2)

考试感谢@Orangepill,你很棒。使用curl它的工作魅力。下面是我的代码示例     

$ch = curl_init();

// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://sadf/profiles/emailalert");
curl_setopt($ch, CURLOPT_HEADER, 0);

// grab URL and pass it to the browser
$result=curl_exec($ch);

// close cURL resource, and free up system resources
curl_close($ch);
if($result){
    echo "execute by curl ok and sending mail";
}else{
    echo "not execute curl funation";
}

答案 1 :(得分:0)