Questions & Comments
You must be logged-in to vote. Log-in to your account or register now.
-
5 months ago
Hi. I am working on a website that intends to pre-authorize an amount before transacting. So for example, UserA wants to transact, we will then pre-Auth $50 from his CC. After say 5 days and the users details check out, we want to then charge that $50. If not, then drop the auth. Does your script support this?
See: http://www.paypalobjects.com/en_US/ebook/PP_ExpressCheckout_IntegrationGuide/HowAuthCaptureWorks.html -
6 months ago
Hey, this looks like it might be just what I need. One question - how can I have it set up multiple recurring payment profiles at once? For example, is it possible to set up profiles for $4.99/month and $25/year in the same transaction?
-
Lionite
Developer
6 months ago
You can only create one recurring profile per transaction. If you are using the Direct Payment (direct credit-card payment), you can make as many of those as you want in the same script once you have the credit-card details. Using Express Checkout (checking out on the Paypal website), you'd have to run one checkout per profile.
-
-
License holderPersonal License
6 months ago
I'm curious, why do you put "$paypal - " in front of function calls. I.e. why do this:
$result = $paypal - directPayment($data,$items);
Instead of this:
$result = directPayment($data,$items);
You do that with the other checkout functions, too. I'm confused why you do that and how it works.
-
Lionite
Developer
6 months ago
That's how you call object methods in PHP. You might want to go over OOP in PHP - http://php.net/manual/en/language.oop5.php
-
License holderPersonal License
6 months ago
Oh, I see, the ">" is missing. The article says:
$result = $paypal - directPayment($data,$items);
But I think it should be:
$result = $paypal->directPayment($data,$items);
The other method calls in the article are like that as well. Maybe the right angle brackets are being stripped by your CMS?
-
-
License holderSingle Site + Minfraud
7 months ago
Hi, I am looking at integrating a MassPay api that is managed from a database in php. Does your api support this? Also I need the ability to be able to setup direct debit facilites for my customers, does your api have any support for this?
-
Lionite
Developer
7 months ago
Hi Hitori,
The component covers mass payment, note that you will need your account specifically enabled by Paypal for it to work. Refer to the section about mass payment in the component description for more information.
I am not sure what you mean by direct debit facilities - the API supports credit card payments using the Direct Payment API (also covered in the component description). You will need a Paypal Pro account to use that (only available in the U.S and the U.K). -
License holderSingle Site + Minfraud
7 months ago
Thank you, for your quick reply. It seems the direct payment api would work nicely, however, I need to be able to call the api from an array of credit card details. Does the api allow for direct input without needing a form? Also Australia now has Website Payment Pro.
-
-
7 months ago
Does this library manage subscription change (if a client upgrade or downgrade or change subscription frequency)?
-
Lionite
Developer
7 months ago
This component provides a method to update an existing recurring payment profile. Not all profile parameters can be updated, for more information see the official documentation - https://www.x.com/developers/paypal/documentation-tools/api/updaterecurringpaymentsprofile-api-operation-nvp
-
-
License holderDeveloper License
8 months ago
Last year I 'bought' version 1.1 (in fact I am not sure I bought it) but I remember that you helped me setting it up. Do I have a license? If yes can I upgrade as my version has stopped working.
After a successful PP transaction, my script register a failed transaction (using Lionite class).
Paul


