2

我的应用程序在 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。

任何帮助将不胜感激:)

4

2 回答 2

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";
}
于 2013-09-14T07:31:43.333 回答
0

阅读从命令行运行的手册:

http://ellislab.com/codeigniter/user-guide/general/cli.html

于 2013-09-14T07:29:08.480 回答