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:
- you should see:
- this will appear twice in the script file and you should replace both instances with:
- 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.
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)
if ($bAuthorize)
{
$Self->SetParam("PAYMENTACTION", "Authorization");
}
else
{
$Self->SetParam("PAYMENTACTION", "Sale");
}
{
$Self->SetParam("PAYMENTACTION", "Authorization");
}
else
{
$Self->SetParam("PAYMENTACTION", "Sale");
}
if ($bAuthorize)
{
$Self->SetParam("PAYMENTACTION", "Sale");
}
else
{
$Self->SetParam("PAYMENTACTION", "Authorization");
}
{
$Self->SetParam("PAYMENTACTION", "Sale");
}
else
{
$Self->SetParam("PAYMENTACTION", "Authorization");
}
If you have any problems with this you can copy the original from 'c:\program files\OCCUpgrade\CommonOCC\' folder.
Comment