Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1
    Join Date
    Apr 2011
    Posts
    23
    Plugin Contributions
    0

    Default final payment error

    i got in contact with pay pal first as i thought i was their end but told me

    Try adding useraction=commit in your Express Checkout redirect URL https://www.paypal.com/cgi-bin/websc...heckout&token=

    https://www.paypal.com/cgi-bin/websc...=commit&token=

    This will give the buyer the option of paying after they login to their PayPal account. The button will read Pay Now. Currently without useraction=commit the buyer logs in and selects a funding source then they click continue which transfers them back to your website to complete the payment. It appears you are not transferring your buyers back to the correct page to complete the payment. If you have any further questions or concerns about integrating PayPal with your web site, please feel free to contact us again at: 888-221-1161, reply to this ticket, or go to https://paypal.com/integration

    Thank you for choosing PayPal, I wish you the best with your future transactions.
    could only find these lines to change

    Line # 1580 : $userActionKey = "&useraction=" . ((int)$orderReview == false ? 'commit' : 'continue');

    Line # 1584 : zen_redirect($paypal_url . "?cmd=_express-checkout&token=" . $_SESSION['paypal_ec_token'] . $userActionKey);

    so changed line 1580 too
    Line # 1580 : $userActionKey = "&useraction=commit" . ((int)$orderReview == false ? 'commit' : 'continue');

    i lost 54 pound so far this week so if zen cart fix it their up for a donation nice one guys

  2. #2
    Join Date
    Apr 2011
    Posts
    23
    Plugin Contributions
    0

    Default Re: final payment error

    Hi info update

    The problem is I , customers get to final checkout then fails at the final stage with this error
    (live transaction) --> https://api-3t.paypal.com/nvp
    Request Headers:
    Array
    (
    [0] => Content-Type: text/namevalue
    [1] => X-VPS-Timeout: 45
    [2] => X-VPS-VIT-Client-Type: PHP/cURL
    [3] => X-VPS-VIT-Integration-Product: PHP::Zen Cart(tm) - PayPal/NVP
    [4] => X-VPS-VIT-Integration-Version: 1.3.9h
    )


    Request Parameters: {SetExpressCheckout}
    Array
    (
    [AMT] => 4.99
    [ITEMAMT] => 4.99
    [L_NUMBER0] => DPMEV2
    [L_NAME0] => Dance Paradise Mult E Vent 2
    [L_AMT0] => 4.99
    [L_QTY0] => 1
    [LOCALECODE] => GB
    [PAYMENTACTION] => Sale
    [ALLOWNOTE] => 1
    [LANDINGPAGE] => Billing
    [RETURNURL] =>
    http://www.raveskool.co.cc/ravesite/...er.php?type=ec
    [CANCELURL] =>
    http://www.raveskool.co.cc/ravesite/...rt&ec_cancel=1
    [PAGESTYLE] => Primary
    [METHOD] => SetExpressCheckout
    [CURRENCYCODE] => GBP
    [USER] => csburgess1_api1.hotmail.com
    [PWD] => ****************
    [VERSION] => 60.0
    [SIGNATURE] => ****************************************************kvSr
    )


    Response:
    Array
    (
    [TOKEN] => EC-3S382856JB262411P
    [TIMESTAMP] => 2011-05-31T20:43:49Z
    [CORRELATIONID] => fd79eb6ee96c1
    [ACK] => Success
    [VERSION] => 60.0
    [BUILD] => 1913139
    [CURL_ERRORS] =>
    )

  3. #3
    Join Date
    Apr 2011
    Posts
    23
    Plugin Contributions
    0

    Default Re: final payment error

    my paypal express module says processing

  4. #4
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: final payment error

    I'm sorry, I don't have any clue what is the "problem" you're trying to solve.
    Zen Cart already adds the appropriate useraction based on how the customer is going through checkout.
    There is no error shown in the log you posted, yet you said it was an error.

    Try explaining the "problem" before suggesting ways to fix it.
    .

    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.

  5. #5
    Join Date
    Apr 2011
    Posts
    23
    Plugin Contributions
    0

    Default Re: final payment error

    Hi the problem is the customer gets to the page I showed you and instead of being sent to pay now in their paypal accounts it sends them back to my shop homepage,

    Now there is defiantly an error somewhere as pay pal confirmed when they tried to make a payment it done the same returned to my shop home page.

    They suggested the reason for it return to site is because of "&useraction=” should be "&useraction=commit" now this is paypal engineers telling me this I didn’t think it was right but did change it?

    Also in my module payments paypal express checkout says processing when should say default

    Cheers for looking mate

  6. #6
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: final payment error

    Quote Originally Posted by Burge View Post
    my paypal express module says processing
    That's normal.
    .

    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.

  7. #7
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: final payment error

    Quote Originally Posted by Burge View Post
    Hi the problem is the customer gets to the page I showed you
    I'm not sure where/how or what you "showed" me.

    Quote Originally Posted by Burge View Post
    and instead of being sent to pay now in their paypal accounts it sends them back to my shop homepage
    is this before being taken to PayPal to login? or after login?
    Quote Originally Posted by Burge View Post
    Now there is defiantly an error somewhere as pay pal confirmed when they tried to make a payment it done the same returned to my shop home page.
    Clearly there's a problem, since the way the PayPal modules in Zen Cart are written, what you're describing is not the normal behaviour, and indeed I'm unable to recreate it on my stores.
    Quote Originally Posted by Burge View Post
    They suggested the reason for it return to site is because of "&useraction=” should be "&useraction=commit" now this is paypal engineers telling me this I didn’t think it was right but did change it?
    Well, what you changed would result in it reading &useraction=commitcommit or &useraction=commitcontinue ... and both of those are far worse than whatever was originally happening.
    .

    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.

  8. #8
    Join Date
    Apr 2011
    Posts
    23
    Plugin Contributions
    0

    Default Re: final payment error

    1. My version off Zen cart is v1.3.9h it has not been upgraded and I believe is the latest version. My site was hosted on a free server during the development stages when I had it up and running I transferred too a cURL paid server. So I made backups of the files to my desktop with cuteftp pro. Then I backed up SQL databases and saved them too my desktop same method. Then followed the Zen cart tutorial on moving site too another server. This went flawlessly and works fantastic.
    2. No add-ons have been installed just the configuration of the payment modules .
    3. My site front end and user end have been graphically changed to suite my main site layout http://www.raveskool.co.cc
    Shop http://www.raveskool.co.cc/shop
    4. before they get to login to their paypal accounts they go through the shopping cart process pay with paypal not logged in they get to the pay now instead of asking them to log in says some think about geographical location and then returns them to page saying can not use paypal to make transaction this time page.
    5. I changed the paypal module page back to “&usseraction=”
    6. So their you have it as clear as I can describe thanks for all the help in pushing me in the right direction but to be honest I just can not figure it out every day I loose customers be it only 2.99 or 4.99 but they all add up come the end of the year cheers for trying any way mate you always on late so I check you back between 21:00h and 22:30 to see if I made things any clearer

    Kind regards
    Burge

  9. #9
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: final payment error

    Try making this very simple change to see whether that "geographic area" message goes away: http://www.zen-cart.com/forum/showpo...8&postcount=15
    That's the issue I think you need to focus on first.
    .

    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.

  10. #10
    Join Date
    Apr 2011
    Posts
    23
    Plugin Contributions
    0

    Default Re: final payment error

    Quote Originally Posted by DrByte View Post
    Try making this very simple change to see whether that "geographic area" message goes away: http://www.zen-cart.com/forum/showpo...8&postcount=15
    That's the issue I think you need to focus on first.
    right i check t out mate cheers

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Can payment type be changed after order is final?
    By carol2848 in forum General Questions
    Replies: 2
    Last Post: 11 Apr 2011, 11:24 AM
  2. Error During Checkout Final Screen - Help!
    By DK_Scully in forum General Questions
    Replies: 4
    Last Post: 31 Jan 2011, 12:59 PM
  3. modifying final payment screen
    By ryangsoton in forum Basic Configuration
    Replies: 3
    Last Post: 19 Jul 2006, 10:56 PM

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