PayPal keeps going to Sandbox

Discussion in 'Technical Support' started by RickMyles, Apr 23, 2011.

  1. RickMyles New Member

    v4.2.3 Developer - deepsea

    I have setup PayPal to collect payments for ads but when a user (me testing from another PC) clicks to checkout they are taken to PayPal sandbox instead of my normal payment page (which works fine on other online payments I take - I just tested it).

    It did work OK briefly but perhaps (?) it ws after I set it to 'demo' then changed back (unticked 'demo') - I don't know.

    Any help?

    Thanks, Rick
  2. John Snyder Staff

    This is a bug, I'll add it to the tracker to be fixed in the next release. The script was checking if it had a value and not actually checking the value. This is effects 4.2.2 and 4.2.3.

    To fix:

    open: includes/paymentapi/paypal/sr.php find (line 15)

    PHP:
    if(!$params['demo'])
    replace with:

    PHP:
    if ($params['demo'] == 'N' || $params['demo'] == '')
  3. RickMyles New Member

    That's fixed it - thanks John - swift response appreciated too
  4. dwalley Customer

    Re: Version 4.2.3.

    Trying a test account: Have the same problem. (Demo box is NOT checked)
    1. Continue button when purchasing was going to sandbox
    2. open sr.php file, copied, pasted, uploaded line you suggest above
    3. now Continue button doesnt do anything when clicked. No payment window AND no sandbox. Stays on same page.

    any thoughts on where to look?

    Huge thanx,
    Don
  5. seymourjames All Hands On Deck

    Try it again Don. It does solve the issue. Clear browser cache and templates_c folder as well just to clean your system up.
  6. dwalley Customer

    Dude, ITS WORKS!!!!

    My confusion came from never having seen PP work like this so I didn't know exactly what I was s'pose to be looking at when it DID work. I've only ever used the html copy/paste approach.

    Very cool! Haven't run it thru all necessary tests but apparently the cache clearance made all the difference to set it up. Finally, i can move forward. Huge thanx.

    Don
    ______________________________________
    Punjab Proverb: "Everything is easy if you know how to do it!"
  7. michael Just get on with it!

    Excellent! And I see that this has been fixed in V4.2.4 so it's all good

Share This Page