Here is the variabel that passed into your server :
https://www.2checkout.com/checkout/purchase?PTCOID=50e1c14498752f2aab071fdba68ea6f7&fixed=Y&demo=N&x_receipt_link_url=http%3A%2F%2Fwww.metro-tanahabang.com%2Fterimae.php&id_type=1&c_prod_564=8058b%2C100&c_name=8058b&c_price=4.8&c_tangible=N&sid=1255224&cart_order_id=6456138887&total=5%2C416.41&sh_cost=3%2C324.38%2C0%2C0
When this variabel is passed into your server, the error message says “PARAMETER ERROR”
It happens when someone buy > USD 1000.
When someone buy < USD 1000, the error messages is not happen.
Here is the variable that can be passed into your server:
https://www.2checkout.com/2co/buyer/purchase?fixed=Y&demo=N&x_receipt_link_url=http%3A%2F%2Fwww.metro-tanahabang.com%2Fterimae.php&id_type=1&c_prod_560=8050%2C3&c_name=8050&c_price=4.5&c_tangible=N&sid=1255224&cart_order_id=6456138887&total=212.52&sh_cost=150.55%2C0%2C0
Please help me to find solution for this problem. thanks for your attention
1 Comment »
+0
-0
You are receiving a parameter error because of the punctuation characters added to the total price variable. Your script is submitting the price as 1,000.00 rather than 1000.00. Please change your script to omit the commas to resolve the parameter error.