Questions tagged [payum]

Payum is a full-fledged payments library for PHP.

Payum offers everything you need to work with payments. From simplest use cases to very advanced ones.

Resources

Official Website

Examples

Documentation

Payum is released under the MIT License.

155 questions
1
vote
1 answer

In Payum How can I check "correctly" the status "pending" in the payment?

In my actual Symfony2 project I use PayumBundle, with Payum 1.3.4, to make payments with paypal_express_checkout factory. I found a behavior that maybe it's ok, but I need to confirm with another person who know about Payum. It's simply to…
Oliver Sosa
  • 754
  • 9
  • 16
1
vote
1 answer

Symfony Payum and Stripe error

I get the following error when I try to configure stripe gateway: Symfony\Component\Config\Definition\Exception\InvalidConfigurationException Unrecognized options "factory, publishable_key, secret_key" under "payum.ga …
Safwan Bakais
  • 129
  • 1
  • 10
1
vote
1 answer

Payum Symfony Doctrine Can't Create Table

I am trying to add a reference to a profile (called Square) to my Payment model (extension of Payum\Core\Model\ArrayObject), but I can't add a foreign key on the table. I want to do this so that when the payment is processed I can update a field…
AMB0027
  • 121
  • 12
1
vote
1 answer

Payum Stripe data flow with Symfony

I am trying to create a checkout that allows a user to create an account for a fee (premium accounts, if you will). A user will create an account (marked as unpaid), the user will pay, and then on a successful payment the account is marked as paid.…
AMB0027
  • 121
  • 12
1
vote
2 answers

Payum - Trait 'Payum\Core\GatewayAwareTrait' not found

When I run php app/console payum:gateway:debug I've this error message PHP Fatal error: Trait 'Payum\Core\GatewayAwareTrait' not found in…
juvaone
  • 11
  • 4
1
vote
0 answers

Attempted to call an undefined method named "getTokenFactory" [PayumBundle - Symfony2]

I'm trying to implement PayumBundle, but when i Click on the Button Pay i have this error: Attempted to call an undefined method named "getTokenFactory" of class "Payum\Bundle\PayumBundle\Registry\ContainerAwareRegistry". $captureToken = …
Sirius
  • 653
  • 1
  • 14
  • 37
1
vote
1 answer

Laravel Payum Omnipay Bridge Logic Exception

I've been getting this error from omnipay bridge whenever I try to capture credit card payment: Credit card details has to be set explicitly or there has to be an action that supports ObtainCreditCard request. Here's my code: //... $payum = (new…
user1240207
  • 217
  • 1
  • 3
  • 13
1
vote
1 answer

Replace twig templates with blade

Is there a way to replace the standard templates with blade ones? I'm using payum with the payum-laravel-package and klarna-checkout gateway. I've come to the point where i need to replace the template for AuthorizeAction. I noticed i can create a…
Henriksjodahl
  • 145
  • 1
  • 14
1
vote
3 answers

Payum - Dispatched event on capture?

I'd like to know if Payum (or PayumBundle) dispatch an event when the payment is captured? The aim is to send a confirmation email to the customer. I found nothing is the doc, and I found only three events in the code source…
Guillaume
  • 99
  • 8
1
vote
0 answers

SSL failure while using PayPal with Payum Bundle in Symfony2 project

I'm currently working on a Symfony2 project with the PayumBundle for Paypal checkouts. I'm getting this error while trying to proceed to a payment (where the PayPal screen should be showing): error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert…
1
vote
2 answers

Create a recurring or subscription payment using Payum Stripe on Symfony 2

I am attempting to attach a plan to a Stripe charge using Payum on Symfony 2. I am able to successfully charge the card but I do not understand how to add the plan to the charge. I started looking into using the Stripe_Customer object directly,…
1
vote
1 answer

Silex Payum error : Request Capture{model: Identity} is not supported

I'm currently using Silex (lastest stable) to make a website where I need to implement a payment system. So I've tried to install Payum (lastest stable), everything worked until I call the prepare page, which redirects me to Payum capture's page…
Raphaël Vigée
  • 2,048
  • 14
  • 27
1
vote
1 answer

Payum/paypal checkout : What to do after redirecting me to done action

I am trying to use the payum solution to integrate paypal checkout to my website. Step 1 : Payment Page, with the validation trigger the redirection to paypal : OK Step 2 : User use his credentials to login and authorize the payment : OK Step 3 :…
MatMouth
  • 858
  • 2
  • 7
  • 24
1
vote
1 answer

Integrate Mollie in Sylius payumbundle

I'm trying to integrate Mollie in the sylius payumbundle via the omnipay bridge. This is what my configuration looks like: sylius_payment: gateways: mollie: Mollie payum: contexts: mollie: omnipay_onsite: …
Maarten
  • 11
  • 3
1
vote
1 answer

PayumBundle with stripe always return Pending even if payment succeeded

I am setuping PayumBundle with Stripe extension in Symfony2. Here is my prepareAction : public function prepareAction() { $paymentName = 'stripe_pay'; $storage = $this->get('payum')->getStorage('XXX\XXXBundle\Entity\ClientOrder'); …