Intergration Problem

raysville
Contributor
Contributor

I am trying to fix our intergration problem by March 29th.  I was not the original person to set this up so I am lost at trying to get this fixed.  I went into my Paypal buttons and below is the code I am seeing:

 

<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="NYFZK9M5A9D7A">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>

 

Is there a way to look at this and see anything that is not right.

 

Below is the link to our website.

 

http://raysville-campground.jackrabbitreservations.com/

 

 

Thank you,

 

Alicia Adair

McDuffie County Raysville Campground

Thomson, Ga. 30824

Login to Me Too
3 REPLIES 3

MTS_Nacho
Moderator
Moderator

@raysville Your button code looks fine.

 

However, I can still see incorrect parameters being passed by your website integration (which is NOT using that button code but rather passing the WPS variables dynamically).

 

This is an example of incorrect variables:

 

cmd=_xclick
business=****
currency_code=USD
item_name=Camp Site 53
amount=$78.00
item_number=40162
button_subtype=services
no_note=1
no_shipping=1
rm=1
bn=PP-BuyNowBF:btn_buynowCC_LG.gif:NonHosted
lc=US
notify_url=*****
return=*****
cancel_return=*****

 

The issue here would be the currency symbol being included within the "amount" variable.

 

Please reach out to your developers or shopping cart providers to remove the currency symbol from the amount parameter.

Login to Me Too

raysville
Contributor
Contributor

I do not have a developer that we used, so how would I go about fixing this myself or is there a number I can call to get this fixed?

 

 

Login to Me Too

MTS_Nacho
Moderator
Moderator

Unfortunately, we won't be able to fix this from PayPal, as it's your own integration's programming logic sending the incorrect values.

Basically, your website is dynamically generating the following link to redirect the buyers to PayPal for every payment:

 

https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=REDACTED&currency_code=USD&item_name=Camp Site 5&amount=$26.00&item_number=40206&button_subtype=services&no_note=1&no_shipping=1&rm=1&bn=PP-BuyNowBF:btn_buynowCC_LG.gif:NonHosted&lc=US&notify_url=REDACTED&return=REDACTED&cancel_return=REDACTED&cbt=CLICK HERE to get your Raysville Campground receipt

 

Such redirection link contains the currency symbol in the "amount" variable (in the above example "amount=$26.00") something that it's not correct.

 

If you want to change this, you will need to:

 

- Identify the exact programming file within your integration that it's constructing the above PayPal link.

 

- Edit such file and remove the hard-coded "$" from the amount variable.

 

Login to Me Too

Haven't Found your Answer?

It happens. Hit the "Login to Ask the community" button to create a question for the PayPal community.