我的应用程序在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。
任何帮助将不胜感激:)
答案 0 :(得分:2)
$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)