0

paypal_class という codeigniter ライブラリを使用しています。すべて問題ありませんが、検証ipn関数でこのエラーが発生します。Use of undefined constant host - assumed 'host'これが、メールがユーザーに送信されていない理由に違いありません。何も返されません。

私はペイパルが初めてです。だから私は詳細な解決策を願っています。ありがとうございました。他に必要な情報があればお尋ねください。


エラーは次の行にあります。

 $fp = fsockopen($url_parsed[host], "80", $err_num, $err_str, 30);

どこ

$url_parsed = parse_url($this->paypal_url);

ここにipn関数があります:

    function validate_ipn() {

    // parse the paypal URL
    $url_parsed = parse_url($this->paypal_url);

    // generate the post string from the _POST vars aswell as load the
    // _POST vars into an arry so we can play with them from the calling
    // script.
    $post_string = '';
    foreach ($_POST as $field => $value) {
        $this->ipn_data["$field"] = $value;
        $post_string .= $field . '=' . urlencode(stripslashes($value)) . '&';
    }
    $post_string.="cmd=_notify-validate"; // append ipn command
    // open the connection to paypal
    $fp = fsockopen($url_parsed['host'], "80", $err_num, $err_str, 30);
    if (!$fp) {

        // could not open the connection.  If loggin is on, the error message
        // will be in the log.
        $this->last_error = "fsockopen error no. $errnum: $errstr";
        $this->log_ipn_results(false);
        return false;
    } else {

        // Post the data back to paypal
        fputs($fp, "POST $url_parsed[path] HTTP/1.1\r\n");
        fputs($fp, "Host: $url_parsed[host]\r\n");
        fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n");
        fputs($fp, "Content-length: " . strlen($post_string) . "\r\n");
        fputs($fp, "Connection: close\r\n\r\n");
        fputs($fp, $post_string . "\r\n\r\n");

        // loop through the response from the server and append to variable
        while (!feof($fp)) {
            $this->ipn_response .= fgets($fp, 1024);
        }
        fclose($fp); // close connection
    }

    if (preg_match("/VERIFIED/i", $this->ipn_response)) {

        // Valid IPN transaction.
        $this->log_ipn_results(true);
        return true;
    } else {

        // Invalid IPN transaction.  Check the log for details.
        $this->last_error = 'IPN Validation Failed.';
        $this->log_ipn_results(false);
        return false;
    }
}
4

1 に答える 1

1

これを変更する必要があります:

 $fp = fsockopen($url_parsed[host], "80", $err_num, $err_str, 30);

 $fp = fsockopen($url_parsed['host'], "80", $err_num, $err_str, 30);

次に、戻り値をここでデバッグします。

$url_parsed = parse_url($this->paypal_url);
var_dump($url_parsed);
于 2013-04-04T07:26:35.417 に答える