1

支払いデータ転送に対応する既知の動作するPHPスクリプトを含む私の PayPalautoReturnページで、何をしても次のエラー メッセージが表示され続けます。"Warning: fgets(): SSL: Connection reset by peer...*(on the line where this is: '$line = fgets($fp, 1024);'* "

質問をする前に、ここで提案されているすべてのこと、および他のフォーラムや記事で読むように勧められていることをすべて試したことをお伝えHTTP 1.0します。問題は解決しません。HTTP 1.1$res=stream_get_contents($fp, 1024)while loop$line = fgets($fp, 1024)

これが問題であると私が考えるものです (そして、誰かが私が正しい方向に進んでいるかどうかを教えてくれることを願っています): PDT の自動リターン ページがアドオン サイトにあり、PayPal がハングアップしたと思います。共有 SSL (共有サーバー上のプライマリ ドメイン用) が認識されない場合。そのため、アドオン ドメイン専用に SSL をインストールするよう Web ホストに依頼しました。

アドオン ドメイン SSL が警告メッセージの原因でしょうか? 繰り返しますが、そのメッセージは次のとおりです。"Warning: fgets(): SSL: Connection reset by peer...*(on the line where this is: '$line = fgets($fp, 1024);'* "

これが私のコードです:

 //look if the parameter 'tx' is set in the GET request and that it  does not have a null or empty value
if(isset($_GET['tx']) && ($_GET['tx'])!=null && ($_GET['tx'])!= "") {
    $tx = $_GET['tx'];

    verifyWithPayPal($tx);
}
else {
    exitCode();
}

function verifyWithPayPal($tx) {
    $req = 'cmd=_notify-synch';
    $tx_token = $tx;
    $auth_token = "MY SANDBOX AUTH_TOKEN HERE";
    $req .= "&tx=$tx_token&at=$auth_token";

    // post back to PayPal system to validate
    $header = "POST /cgi-bin/webscr HTTP/1.0\r\n";
    $header .= "Content-Type: application/x-www-form-urlencoded\r\n";
    $header .= "Content-Length: " . strlen($req) . "\r\n\r\n";

    // url for paypal sandbox
    //$fp = fsockopen ('ssl://www.sandbox.paypal.com', 443, $errno,   $errstr, 30);    

    // url for payal
    // $fp = fsockopen ('www.paypal.com', 80, $errno, $errstr, 30);
    // If possible, securely post back to paypal using HTTPS
    // Your PHP server will need to be SSL enabled.

     $fp = fsockopen ('ssl://www.sandbox.paypal.com', 443, $errno, $errstr, 30);

    if (!$fp) {
        exitCode();
    } else {
        fputs($fp, $header . $req);        
        // read the body data
        $res = '';
        $headerdone = false;

         while (!feof($fp)) {
            $line = fgets($fp, 1024);
        // $res=stream_get_contents($fp, 1024);
            if (strcmp($line, "\r\n") == 0) {
                // read the header
                $headerdone = true;
            }
            else if ($headerdone) {
                // header has been read. now read the contents
                $res .= $line;
            }
         }

        // parse the data
        $lines = explode("\n", $res);

        $response = array();

        if (strcmp ($lines[0], "SUCCESS") == 0) {

            for ($i=1; $i<count($lines);$i++){
                list($key,$val) = explode("=", $lines[$i]);
                $response[urldecode($key)] = urldecode($val);
            }

            $itemName = $response["item_name"];
            $amount = $response["payment_gross"];
            $myEmail = $response["receiver_email"];
            $userEmailPaypalId = $response["payer_email"];
            $paymentStatus = $response["payment_status"];
            $paypalTxId = $response["txn_id"];
            $currency = $response["mc_currency"];

            // check the payment_status is Completed
            if($paymentStatus!="Completed") {
                payment_complete();
                emailer($userEmailPayPalID);

            } else {
                payment_incomplete($paymentStatus);
            }

            /*
            // check that txn_id has not been previously processed
            checkIfTransactionHasAlreadyBeenProcessed($paypalTxId);
            // check that receiver_email is your Primary PayPal email
            checkThatPaymentIsReceivedAtYourEmailAddress($myEmail);
            // check that payment_amount/payment_currency are correct
            checkPaymentAmountAndCurrency($amount, $currency);
            // process the order
            processOrder();
            } else {
            exitCode();
            */
        }
    }
        fclose ($fp);
}
4

1 に答える 1

1

に接続していることに気付きましたwww.sandbox.paypal.com。に接続したいと考えていますapi.sandbox.paypal.com

于 2015-02-04T16:14:52.367 に答える