Paypal not prepopulating address details - html

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="notify_url" value="http://www.blaa.co.uk/ipn_subscribe.asp">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="blaaa#blaa.co.uk">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="return" value="http://www.blaablaa.co.uk/thankyou.asp?oid=955">
<input type="hidden" name="rm" value="2">
<input type="hidden" name="item_name" value="Purchase">
<input type="hidden" name="quantity" value="1">
<input type="hidden" name="custom" value="955">
<input type="hidden" name="amount" value="85">
<input type="hidden" name="lc" value="GB">
<input type="hidden" name="address1" value="5 Birkin Close">
<input type="hidden" name="city" value="knutsford">
<input type="hidden" name="country" value="GB">
<INPUT id="email" type="hidden" name="email" value="test#test.com">
<INPUT type="image" name="Continue" src="NewImages/continue1.jpg" alt="Continue to payment merchant to pay for your purchase">
</FORM>
Any idea why this does pre populate the Adddress details if you do a credit card purchase?It looks fine to me.
The form is calling paypay - https://www.paypal.com/cgi-bin/webscr. The image is the button that sends the form to paypal. It is going to paypal and not prepopulating the address details in paypal if you want to pay by creditt card. Any ideas why please. Thanks

add this in your code it will work and also enable auto return ul option in your account in website payment prefrence under the selling prefrence under profile under my account option
<input type="hidden" name="return" value="http://abctest.com./purchase/thank-you.php">
(edit show code...)

Related

How to use Card Storage with Global Payments Ecommerce HPP?

I have the following payment form that I setup:
<form id="ccform" action="https://hpp.sandbox.realexpayments.com/pay" method="post" target="output_frame">
<input type="hidden" name="MERCHANT_ID" id="MERCHANT_ID" value="Merchant ID">
<input type="hidden" name="ACCOUNT" id="ACCOUNT" value="internet">
<input type="hidden" name="ORDER_ID" id="ORDER_ID" value="20180518231046JP">
<input type="hidden" name="CURRENCY" id="CURRENCY" value="EUR">
<input type="hidden" name="AMOUNT" id="AMOUNT" value="500">
<input type="hidden" name="TIMESTAMP" id="TIMESTAMP" value="20180518231046">
<input type="hidden" name="SHA1HASH" id="SHA1HASH" value="8596447e0229c2f7216bca240d6a291f9cec5e14">
<input type="hidden" name="HPP_POST_RESPONSE" id="HPP_POST_RESPONSE" value="correctWebsiteButRemoved">
<input type="hidden" name="AUTO_SETTLE_FLAG" value="1">
<input type="hidden" name="HPP_VERSION" value="2">
<input type="hidden" name="CARD_STORAGE_ENABLE" value="1">
<input type="hidden" name="OFFER_SAVE_CARD" value="1">
<input type="hidden" name="PAYER_EXIST" value="0">
<input type="hidden" name="PAYER_REF" id="PAYER_REF" value="asdahsioda">
<input type="hidden" name="PMT_REF" id="PMT_REF" value="20180518231046JP-asdasda">
<input type="hidden" name="HPP_CUSTOMER_FIRSTNAME" value="First">
<input type="hidden" name="HPP_CUSTOMER_LASTNAME" value="Last">
<input type="hidden" name="HPP_LANG" value="DE">
<input type="hidden" name="COMMENT1" value="http://www.google.ie">
<input type="submit" value="Proceed to secure server" id="SUBMITBTN">
</form>
I was trying to get the card storage process to work with Realex. I just can't get it work. It does not reply with the correct values that I would expect based on the documentation: https://developer.realexpayments.com/#!/hpp/card-storage-and-management/create-payer-and-store-card
Thanks for your question. Your request POST looks correct, can you please check with a member of our Support Team that Card Storage through the HPP is enabled on your account? It is not enabled by default.

Paypal return with POST method

I am trying to test a Paypal third-party shopping cart button with a sandbox account. The button looks like this:
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top" id="<some_id>">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="upload" value="1">
<input type="hidden" name="business" value="<sandbox_account_email>">
<input type="hidden" name="lc" value="DE">
<input type="hidden" name="item_number_1" value="item_number_1_value">
<input type="hidden" name="item_name_1" value="item_name_1_value" id="paypal-order-name">
<input type="hidden" name="amount_1" value="10" id="paypal-last-amount">
<input type="hidden" name="item_number_2" value="item_number_2_value">
<input type="hidden" name="item_name_2" value="item_name_2_value">
<input type="hidden" name="amount_2" value="45">
<input type="hidden" name="currency_code" value="EUR">
<input type="hidden" name="button_subtype" value="services">
<input type="hidden" name="no_note" value="0">
<input type="hidden" name="no_shipping" value="2">
<input type="hidden" name="rm" value="2">
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynow_SM.gif:NonHostedGuest">
<input type="image" id="order-pay-with-paypal" src="/files/1414/1874/7188/checkout-logo-large-de.png" intent="" in-highres-src="/files/9214/1874/7188/checkout-logo-large-de-2x.png" border="0" name="submit" disabled="true">
<input type="hidden" name="return" value="https://somewheretoreturn.com/orders">
<input type="hidden" name="charset" value="utf-8">
</form>
The payment is done successfully, and the redirection occurs, but as a GET method. I need the redirect to my website be a POST. The rm variable is set to 2, as described in documentation, what else do I need to set to do a POST request?

PayPal doesn't redirect to my return URL after purchase ends

In My Account > Selling online > Website preferences > Auto Return is set to On.
Existing, live (non-localhost) Return URL is provided as well.
PayPal Account Optional is set to Off, as adviced.
Despite that, after finalizing transaction no redirect happens.
My payment button:
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="upload" value="1">
<input type="hidden" name="business" value="[seller's email]">
<input type="hidden" name="item_name" value="Lorem ipsum">
<input type="hidden" name="amount" value="1">
<input type="hidden" name="quantity" value="1">
<input type="hidden" name="currency_code" value="PLN">
<input type="hidden" name="email" value="[buyer's email]">
<input type="image" name="submit" border="0"
src="https://www.paypalobjects.com/pl_PL/PL/i/btn/btn_paynowCC_LG.gif"
alt="PayPal">
</form>

PayPal checkout html form not working

i have some difficulties with defining html form for PayPal checkout,
i always use the same code but this time something go wrong,
i'm trying to send the user for paypal page to pay the all cart at once and
i'm getting an error:
We cannot process this transaction because there is a problem with the PayPal email address supplied by the seller. Please contact the seller to resolve the problem. If this payment is for an eBay listing, you can contact the seller via the "Ask Seller a Question" link on the listing page. When you have the correct email address, payment can be made at www.paypal.com.
i checked the account setting and it seems to be ok, Account Type: Business Status: Verified, i also add the ipn address in the account and turn it to ON
this is my code:
<form method="post" action="https://www.paypal.com/cgi-bin/webscr" id="paypal" name="paypal">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="upload" value="1">
<input type="hidden" name="business" value="business#email.com‏">
<input type="hidden" name="currency_code" value="ILS">
<input type="hidden" name="rm" value="2" />
<input type="hidden" name="return" value="http://www.example.com/orderSubmited.php" />
<input type="hidden" name="notify_url" value="http://www.example.com/paid.php" />
<input type="hidden" name="cancel_return" value="http://www.example.com" />
<input type="hidden" name="shipping" value="0" />
<input type="hidden" name="charset" value="utf-8">
<input type="hidden" name="item_name" value="payment>
<input type="hidden" name="item_number" value="123456" />
<input type="hidden" name="amount" value="250" />
<input type="hidden" name="quantity" value="1" />
<input type="hidden" name="address1" value="Address" />
<input type="hidden" name="city" value="City" />
<input type="hidden" name="zip" value="Zip" />
<input type="hidden" name="email" value="customer#email.com" />
<input type="hidden" name="first_name" value="CustomerFirstName" />
<input type="hidden" name="last_name" value="CustomerLastName"/>
</form>

Paying for multiple items (at once) via paypal

I have a list of products that I'd like to add a "pay now" button to so that I can allow my customers to pay via Paypal.
I've gone through the documentation and can't find how to do this.
I can add multiple items, but this is not going to be handy as I already have the list of items to process.
I also need the checkout process to itemize the order, so a "buy now" with 1 price is no good either.
Any help appreciated guys, I tried (with no luck):
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="email#domain.com">
<input type="hidden" name="lc" value="GB">
<input type="hidden" name="item_name" value="test 1">
<input type="hidden" name="item_number" value="1">
<input type="hidden" name="item_name2" value="test 2">
<input type="hidden" name="item_number2" value="2">
<input type="hidden" name="item_name3" value="test 3">
<input type="hidden" name="item_number3" value="3">
<input type="hidden" name="amount" value="99.00">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="button_subtype" value="products">
<input type="hidden" name="no_note" value="0">
<input type="hidden" name="add" value="1">
<input type="hidden" name="bn" value="PP-ShopCartBF:btn_cart_LG.gif:NonHostedGuest">
<input type="image" src="https://www.paypal.com/en_GB/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online.">
<img alt="" border="0" src="https://www.paypal.com/en_GB/i/scr/pixel.gif" width="1" height="1">
</form>
See this sample and make the changes to yours accordingly. Basically add underscore to item name before number and give unique name to amount also with underscore and number.
You have to give amount to each item based on your carts totals.
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="upload" value="1">
<input type="hidden" name="business" value="youremail#mail.com">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="item_name_1" value="beach ball">
<input type="hidden" name="amount_1" value="15">
<input type="hidden" name="item_name_2" value="towel">
<input type="hidden" name="amount_2" value="20">
<input type="image" src="http://www.paypal.com/en_US/i/btn/x-click-but01.gif" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form>
Specify Quantity(optional)
<input type="hidden" name="quantity_1" value="1">
for more reference about cart: Paypal Cart
it will not work in
<input type="hidden" name="cmd" value="_xclick-subscriptions">
please update me if you know multiple item payment option in recurrent payment method or in any ways i can add tax in this method.
PayPal Add to Cart button helps you to accept payment for multiple items. The button HTML will like the following.
<form target="_self" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="business" value="paypal#email.com">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="add" value="1">
<input type="hidden" name="item_name" value="PHP Book">
<input type="hidden" name="item_number" value="PB123">
<input type="hidden" name="amount" value="25">
<input type="hidden" name="currency_code" value="USD">
<input type='hidden' name='cancel_return' value='http://www.example.com/cancel.php'>
<input type='hidden' name='return' value='http://www.example.com/success.php'>
<input type="image" name="submit"
src="https://www.paypalobjects.com/webstatic/en_US/i/btn/png/btn_addtocart_120x26.png"
alt="Add to Cart">
<img alt="" width="1" height="1" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif">
</form>