PayPal button "out of date" ??
Hi all,
I've been using a paypal button on my site for a couople of years with no problems. Suddenly I get an email from a potential customer saying that as she clicked the "buy now" she got this message from paypal:
"You have requested an outdated version of PayPal. This error often results from the use of bookmarks."
Very strange...
So by button code looks like this (anyone know what needs to be "updated") ?
on (release) {
var paypal = new LoadVars();
paypal.cmd = '_xclick';
paypal.upload = '1';
paypal.business = '[email protected]';
paypal.currency_code = 'GBP';
paypal.amount = price;
paypal.no_shipping = '1';
paypal.shipping = '0';
paypal.tax = '0';
paypal.lc = 'GB';
paypal.item_name = [style+", "+type];
paypal.send('https://www.paypal.com/cgi-bin/webscr', 'POST');
}
Best wishes
Monty
This just started happening to my site as well.
Everything was working fine 2 weeks ago. Now this error shows up. Frustrating indeed. Looking for answers everywhere, but coming up with nothing.
Actionscript Code:
var addToCartURL:
String =
'https://www.paypal.com/cgi-bin/webscr';
var request:URLRequest =
new URLRequest
(addToCartURL
);
var paypal:URLVariables =
new URLVariables
();
paypal.
cmd=
'_xclick';
paypal.
upload=
'1';
paypal.
business=
'[email protected]';
paypal.
currency_code=
'USD';
paypal.
amount=
'50';
paypal.
no_shipping =
'0';
paypal.
shipping =
'';
paypal.
tax =
'';
paypal.
lc =
'US';
paypal.
item_name=
'"MyItemDEscriptionWasHere';
paypal.
item_number=
'RYFAWAEUZC645';
paypal.
weight=
'2';
paypal.
weight_unit=
'lbs';
paypal.
instanceName=
'paypalBtn_mc';
request.
data = paypal;
request.
method = URLRequestMethod.
POST;
navigateToURL
(request,
'_blank');
I used Paypal's updated html Buy Now button creator and the only difference I could find was changing this:
paypal.cmd='_xclick';
to this:
paypal.cmd='_s-xclick';
But all this does is take the user to a different error page.