PAYPAL CUBECART 3 PROBLEM
If you get this page error:
PayPal/transfer.inc.php on line 119
The problem is on line 118 - - there is an extra " in the line. For example, the INCORRECT code is this:
<input type='hidden' name='upload' value='1' />";
You need to edit out that extra " and make the line look like this:
<input type='hidden' name='upload' value='1' />;
Save the script and try again: it should work.
When processing a Paypal order, you get this error message:
PayPal/transfer.inc.php on line 29
This indicates you probably have added line numbers to the transfer.inc.php script. Remove those numbers and your script should now function.
Page From
eeweems.com