SMFHacks.com

SMF Store => Support => Topic started by: diegolyanky on October 04, 2013, 01:03:06 pm

Title: Any changes in Paypal IPN ?
Post by: diegolyanky on October 04, 2013, 01:03:06 pm
Hi:

I received a notification from Paypal, say:

Quote
Action Required before October 7, 2013
Merchants need to update their scripts IPN and PDT to use HTTP 1.1 and include the HTTP header "Host" and "Connection: close" in the script IPN ​​return shipping.

Example with Host as www.paypal.com (make the necessary changes if you are using ipnpb.paypal.com):

ASP
//Establezca los valores para la solicitud de regreso
req.Method="POST";
req.Host="'www.paypal.com'";
req.ContentType="application/x-www-form-urlencoded";

Perl
$req=HTTP::Request->new('POST', 'https://www.paypal.com/cgi-bin/webscr');
$req->content_type('application/x-www-form-urlencoded');
$req->header(Host=> 'www.paypal.com');
$req->header(Connection=> 'close');
PHP
// envío de regreso al sistema PayPal para que lo valide
$header="POST /cgi-bin/webscr HTTP/1.1\r\n";
$header .="Content-Type: application/x-www-form-urlencoded\r\n";
$header .="Host: www.paypal.com\r\n";
$header .="Connection: close\r\n\r\n";

Java
HttpsURLConnection  uc=(HttpsURLConnection) u.openConnection();
uc.setDoOutput(true);
uc.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
uc.setRequestProperty("Host", "www.paypal.com");
uc.setRequestProperty("Connection", "Close");

The Sandbox environment is configured to reject HTTP requests that do not have the header "Host" HTTP 400 error with. Businesses can use the PayPal Sandbox environment to certify the changes made to your scripts IPN and PDT.

For more information about PDT and IPN, see http://www.paypal.com/pdt and http://www.paypal.com/ipn. For additional information or have any questions about this change, please contact the Technical Support team to trade through https://www.paypal.com/mts PayPal.

Sincerely,

PayPal

I'm using version 1.3.8 ... I can´t upgrade, because I have a lot of modifications... so, just tell me if I must change anything...

Thanks a lot !
Title: Re: Any changes in Paypal IPN ?
Post by: SMFHacks on October 04, 2013, 01:11:17 pm
A while back yes there was it was a must fix update.
Here is patch changes to fix
http://www.smfhacks.com/index.php/topic,7099.0.html
Title: Re: Any changes in Paypal IPN ?
Post by: diegolyanky on October 04, 2013, 01:14:32 pm
Thanks to your reply...

Great !!... I'll make that changes.

But, where is located the file " storeipn2.php " ?
Title: Re: Any changes in Paypal IPN ?
Post by: SMFHacks on October 04, 2013, 01:16:25 pm
If you have 2.0 found in the root directory of your forum if SMF 1.1.x you have storeipn.php
Title: Re: Any changes in Paypal IPN ?
Post by: diegolyanky on October 04, 2013, 01:23:05 pm
Many thanks...

Making the changes.

Regards !!
Title: Re: Any changes in Paypal IPN ?
Post by: diegolyanky on October 04, 2013, 01:30:38 pm
And, where is located storeipn.php in smf 1.1.x ?

Sorry... I found it. Is in root lol
Title: Re: Any changes in Paypal IPN ?
Post by: SMFHacks on October 04, 2013, 01:31:51 pm
Same main root directory of your SMF forum.