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 に答える