Announcement

Collapse
No announcement yet.

Paypal Express Checkout

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #16
    Hi Ian,

    Can you try the following please:

    - browse to your site folder and go into the 'CommonOCC' folder
    - locate 'OCCPaypalNVPTemplate.pl' and open it in a text editor such as notepad
    - search for:

    Code:
    if ($bAuthorize)
    - you should see:

    if ($bAuthorize)
    {
    $Self->SetParam("PAYMENTACTION", "Authorization");
    }
    else
    {
    $Self->SetParam("PAYMENTACTION", "Sale");
    }
    - this will appear twice in the script file and you should replace both instances with:

    if ($bAuthorize)
    {
    $Self->SetParam("PAYMENTACTION", "Sale");
    }
    else
    {
    $Self->SetParam("PAYMENTACTION", "Authorization");
    }
    - close and save the file and update your site.

    If you have any problems with this you can copy the original from 'c:\program files\OCCUpgrade\CommonOCC\' folder.
    ********************
    Tracey
    SellerDeck

    Comment


      #17
      Thankyou, I have made the changes and when post back when someone uses it

      thankyou
      Ian

      Comment


        #18
        It is all working now, thankyou for all of your help.

        Ian

        Comment

        Working...
        X