Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Yii php Paypal credit card payment integration [closed]

Tags:

php

yii

I know this sounds vague, but I'm looking for a way to build a Yii paypal credit card payment methods for a credit based purchase system. Is there a good yii php library that does it? Any good resources to learn how to do it? Thanks in advance.

like image 810
tipsywacky Avatar asked Jul 06 '12 16:07

tipsywacky


People also ask

Why is my PayPal credit card not working?

Your card is associated with a specific PayPal account, and you're not logging in with that particular account. Your card was associated with a PayPal account that has since been closed. You've linked the card to a PayPal account, but have not yet confirmed it. You've exceeded your card limit with the PayPal system.

Can I use PayPal to pay credit card?

You cannot pay a credit card with PayPal directly, but you can transfer money from your PayPal balance to your bank account and then make a credit card payment with that money.

How do I activate my PayPal card processing?

Enable your account to accept card paymentsLog into the PayPal Developer Dashboard, go to My Apps & Credentials > Sandbox > REST API apps, and select the name of your app. Go to Sandbox App Settings > App feature options > Accept payments and select the Advanced options link to see if ACDC is enabled for your account.


3 Answers

Try out this extension http://www.yiiframework.com/extension/paypal/

It has PayPals Direct Payment API integration use 'DoDirectPayment' method of the component.

like image 152
Arshak Grigoryan Avatar answered Oct 22 '22 13:10

Arshak Grigoryan


You may want to have a look at these extensions
http://www.yiiframework.com/extension/tiny-paypal-shop/
http://www.yiiframework.com/extension/ppext/

And a forum thread related to ppext
http://www.yiiframework.com/forum/index.php/topic/12696-ppext-paypal-extension/

Tutorial
http://alanhollis.com/yii-using-ppextbuttonmanager/

Edit: Wiki article http://www.yiiframework.com/wiki/433/paypal-integration-and-ipn-instant-payment-notification/

like image 44
Yasen Avatar answered Oct 22 '22 13:10

Yasen


paypal like other payment services offer two flavours of their payment systems.

One is off site, where user is redirected to parent page from iframe(usually) that you clicked on.

The other option is integrated, where your transaction is seemlessly worked into your website so you never leave the page.

Your first step is deciding which one of these you want, the costs, the payment gateway fees your willing to deal with. If you are big enough to need a merchant account.

like image 2
Dan Kanze Avatar answered Oct 22 '22 14:10

Dan Kanze