asterisk2billing.org
http://forum.asterisk2billing.org/

failed paypal transaction
http://forum.asterisk2billing.org/viewtopic.php?f=33&t=12744
Page 1 of 1

Author:  marcin [ Sat Sep 08, 2018 1:51 pm ]
Post subject:  failed paypal transaction

For last 24 hours legit paypal payments are not passing security verification.
I have compared the POST Var Arrays from sucesfull payment and failed and they are no deferences.
The only thing that I see in a2billing_epayment.log for failed transaction is :

HTTP/1.0 400 Bad Request
Server: AkamaiGHost
Mime-Version: 1.0
Content-Type: text/html
Content-Length: 208
Expires: Fri, 07 Sep 2018 13:38:51 GMT
Date: Fri, 07 Sep 2018 13:38:51 GMT
Connection: close

<HTML><HEAD>
<TITLE>Invalid URL</TITLE>
</HEAD><BODY>
<H1>Invalid URL</H1>
The requested URL "&#91;no&#32;URL&#93;", is invalid.<p>
Reference&#32;&#35;9&#46;8f0af748&#46;1536327531&#46;1015385
</BODY></HTML>
]


Nothing has changed since successful paypal transaction.
Any ideas?

Author:  marcin [ Mon Sep 10, 2018 5:52 pm ]
Post subject:  Re: failed paypal transaction

well the project appear to be dead and it is time to move on.
in case any of you have similar issues
edit checkout_process.php
and replace

$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";
with
$header .= "POST /cgi-bin/webscr HTTP/1.1\r\n";
$header .= "Content-Length: " . strlen($req) . "\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";

and

if (strcmp ($res, "VERIFIED") == 0) {
with
if (strcmp (trim($res), "VERIFIED") == 0) {

Author:  GeekBoy [ Thu Oct 11, 2018 6:33 pm ]
Post subject:  Re: failed paypal transaction

Since there has been ZERO activity on this for about three years it could be the PayPal side which has the issue?

Any idea what you are planning to move on to?

I have been looking for an alternative myself.

They seem to have abandoned the project after the Calling Card industry is now basically dead, and that is what the main feature of it is. I would of thought they could have shifted the project to accommodate this change.

I am hoping to find something more for general telecommunications. I did find another Open Source one which covers this, but the developers are complete assholes, have on purpose created bad documentation so you will go with an overly expensive annual contract to install and maintain it. When I complained about poor documentation (They won't let the community edit their wiki), they attacked me and demanded a pay some crazy high support fee. An amount a lot far higher than this project would of charged you.

I also found ASTPP, but it seems to be basically similar to this one, but it is still active in development If you want to do more with it, they have separate paid modules you can add on. It seems to be dated as on the billing. As I want some accounts to be unlimited on some items, and other items to be billed per use.

Page 1 of 1 All times are UTC
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/