Results 1 to 6 of 6
  1. #1
    Join Date
    Jun 2012
    Posts
    57
    Plugin Contributions
    2

    Default PayPal Payments Pro problem 10544

    Okay, not sure what I'm doing wrong.

    I have zen-cart version 1.5.1
    I have a PayPal business account that has been approved for PayPal Payments Pro, PayPal Express Payments, PayFlow API (full access).

    I have configured the PayPal Express Checkout and included my API signature and credentials (PayPal mode = PayPal) - this works.
    I have the old PayFlow Gateway code installed (v 1.3.9) and it works and everything seems fine. However, my concern here is this is old code that probably shouldn't be used anymore and so I'm trying to configure for the proper? code of PayPal Payments Pro. So I disabled the PayFlow Gateway module and have configured the PayPal Payments Pro - for the options it gives me.

    When I try to process a credit card I get an error (10544) indicating the transaction cannot be processed. Note: this is a test transaction that should decline. When I check in my PayPal Manager account, there is no indication of this transaction anywhere. Here's the log details:

    2013-03-20 04:21:37
    -------------------
    (live transaction) --> https://api-3t.paypal.com/nvp
    Request Headers:
    Array
    (
    [0] => Content-Type: text/namevalue
    [1] => X-VPS-Timeout: 90
    [2] => X-VPS-VIT-Client-Type: PHP/cURL
    [3] => X-VPS-VIT-Integration-Product: PHP::Zen Cart(R) - PayPal/NVP
    [4] => X-VPS-VIT-Integration-Version: 1.5.1
    )


    Request Parameters: {DoDirectPayment}
    Array
    (
    [ACCT] => ************1111
    [AMT] => 17.40
    [BUTTONSOURCE] => ZenCart-DP_us
    [CARDISSUE] =>
    [CITY] => Loveland
    [COUNTRYCODE] => US
    [CREDITCARDTYPE] => Visa
    [CUSTOM] => DP-2-1363818085
    [CVV2] => ***
    [EMAIL] => [email protected]
    [EXPDATE] => 032014
    [FIRSTNAME] => Bruce
    [INVNUM] => 2-1363818085-[BestitchedStore]
    [IPADDRESS] => 67.190.63.236
    [ITEMAMT] => 11.95
    [LASTNAME] => Tracy
    [L_AMT0] => 11.95
    [L_NAME0] => 24 Snowflakes in Tatting [237]
    [L_NUMBER0] => BK-001
    [L_QTY0] => 1
    [NOTIFYURL] => https://www.tracyandprice.com/storetest/ipn_main_handler.php
    [PAYMENTACTION] => Sale
    [PHONENUM] => 9702314006
    [SHIPPINGAMT] => 5.10
    [SHIPTOCITY] => Loveland
    [SHIPTOCOUNTRYCODE] => US
    [SHIPTONAME] => Bruce Tracy
    [SHIPTOSTATE] => CO
    [SHIPTOSTREET] => 3745 Leopard St
    [SHIPTOZIP] => 80537
    [STATE] => CO
    [STREET] => 3745 Leopard St
    [TAXAMT] => 0.35
    [ZIP] => 80537
    [METHOD] => DoDirectPayment
    [CURRENCYCODE] => USD
    [USER] => nancy_api1.tracyandprice.com
    [PWD] => ****************
    [VERSION] => 61.0
    [SIGNATURE] => ****************************************************ZynH
    )


    Response:
    Array
    (
    [TIMESTAMP] => 2013-03-20T22:21:37Z
    [CORRELATIONID] => 524e1ae3b0702
    [ACK] => Failure
    [VERSION] => 61.0
    [BUILD] => 5479129
    [L_ERRORCODE0] => 10544
    [L_SHORTMESSAGE0] => Transaction cannot be processed.
    [L_LONGMESSAGE0] => Please use a different payment card.
    [L_SEVERITYCODE0] => Error
    [AMT] => 17.40
    [CURRENCYCODE] => USD
    [CURL_ERRORS] =>
    )


    DoDirectPayment, Elapsed: 12092ms -- Failure

    TIMESTAMP=2013%2d03%2d20T22%3a21%3a37Z&CORRELATIONID=524e1ae3b0702&ACK=Failure&V ERSION=61%2e0&BUILD=5479129&L_ERRORCODE0=10544&L_SHORTMESSAGE0=Transaction%20can not%20be%20processed%2e&L_LONGMESSAGE0=Please%20use%20a%20different%20payment%20 card%2e&L_SEVERITYCODE0=Error&AMT=17%2e40&CURRENCYCODE=USD&CURL_ERRORS=

    Any help would be greatly appreciated!

    Thanks.

  2. #2
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: PayPal Payments Pro problem

    Quote Originally Posted by batracy View Post
    When I try to process a credit card I get an error (10544) indicating the transaction cannot be processed. Note: this is a test transaction that should decline.
    Yes, it should decline. It means "The transaction was declined by PayPal. Contact PayPal for more information."

    Contact PayPal for the reason why they declined the card. www.paypal.com/mts

    Quote Originally Posted by batracy View Post
    When I check in my PayPal Manager account, there is no indication of this transaction anywhere.
    Not surprising. Unlike payflow, with PayPal Payments Pro, you won't necessarily see every "decline".
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  3. #3
    Join Date
    Jun 2012
    Posts
    57
    Plugin Contributions
    2

    Default Re: PayPal Payments Pro problem

    Thanks DrByte!

    I assumed there was a problem here as the error message wasn't what was expected - as in I expected a message telling me the card was declined. It's interesting that the transaction doesn't show up in the PayPal Manager, when I process this same transaction through the PayFlow Gateway it does show up and indicates it was declined - hence the confusion.

    Moving on to the next test - thanks for the help!

  4. #4
    Join Date
    Mar 2010
    Posts
    83
    Plugin Contributions
    0

    Default Re: PayPal Payments Pro problem

    Let me preface this to say that I am not a programmer. In reading through this thread it appears that PayPal micropayments are supported in ZC 1.5.0 by enabling Express Checkout. Is that that case or do I need to configure something else? Also, is there a way to get micropayments to work with Standard-IPN?

  5. #5
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: PayPal Payments Pro problem

    Quote Originally Posted by bowerstech View Post
    In reading through this thread it appears that PayPal micropayments are ...
    Um ... micropayments aren't mentioned anywhere in this thread.

    Quote Originally Posted by bowerstech View Post
    it appears that PayPal micropayments are supported in ZC 1.5.0 by enabling Express Checkout. Is that that case or do I need to configure something else?
    Yes, EC supports micropayments. You must provide your micropayments account credentials in the corresponding additional define() statements you'll have to add to your site. Instructions for this are discussed in several other forum threads devoted to the topic of micropayments.
    This thread is about an error message #10544, not about micropayments.

    Quote Originally Posted by bowerstech View Post
    Also, is there a way to get micropayments to work with Standard-IPN?
    No.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  6. #6
    Join Date
    Mar 2010
    Posts
    83
    Plugin Contributions
    0

    Default Re: PayPal Payments Pro problem

    My apologies. I thought I was replying to a thread on micropayments and must have posted to the wrong one.

 

 

Similar Threads

  1. Test PayPal Payments Pro before signing up for a PayPal Pro account?
    By menappi in forum PayPal Website Payments Pro support
    Replies: 7
    Last Post: 23 Aug 2012, 10:43 PM
  2. Paypal payments pro versus simple paypal buttons
    By NJR21 in forum PayPal Website Payments Pro support
    Replies: 2
    Last Post: 23 Dec 2011, 12:04 PM
  3. PayPal Payments Pro
    By robj27 in forum PayPal Website Payments Pro support
    Replies: 0
    Last Post: 16 Apr 2009, 01:50 PM
  4. Is PayFlow Pro the same as PayPal Website Payments Pro?
    By alicia1234 in forum PayPal Website Payments Pro support
    Replies: 2
    Last Post: 30 Jan 2009, 10:28 PM
  5. PayPal Website Payments Pro = PayPal PayFlow Pro?
    By Comtrad in forum PayPal Website Payments Pro support
    Replies: 4
    Last Post: 5 Feb 2008, 06:11 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR