Problems, need help? Have a tip or advice? Post it here.
2 posts Page 1 of 1
From what I understand, the only thing necessary to connect client's PayPal with couch cart is to define email address that is associated with his PayPal business account($pp['paypal_email'])?

I do that and all transactions will go smoothly, or is there anything else to do?
Right. Following are the two settings in cart/config.php that need to be changed
Code: Select all
$pp['paypal_use_sandbox'] = 0;
$pp['paypal_email'] = '';

You should set the $pp['paypal_use_sandbox'] to '1' while the site is in development. Once you have done your testing and are ready to go live, make it '0' again.
2 posts Page 1 of 1