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
3
votes
2 answers

Payum Bundle : How to change the view of capture action in symfony2

I am using PAYUM Bundle for the payment gateway integration, and its basic example is working fine, But now I want integrate the payum bundle in application by changing the payum capture action layout and adding extra field payment detail…
amit
  • 63
  • 8
3
votes
1 answer

Symfony2 Payum Bundle - Request SecuredCaptureRequest{model: Payment} is not supported

I have just installed and configured the payum bundle. I am having an exception: Request SecuredCaptureRequest{model: Payment} is not supported. It occurs after the redirect in the preparePaypalExpressCheckoutPaymentAction in the…
tomazahlin
  • 2,137
  • 1
  • 24
  • 29
3
votes
1 answer

Token Issue with recurring payments with Payum

I am trying to run the example code here But I am getting this error: Payum\Core\Exception\InvalidArgumentException: A token with hash `RVpxpP1m3HnTWcj2oL19SQ38NWvCDIz5qeUwfr283kY` could not be found. in…
sakhunzai
  • 13,900
  • 23
  • 98
  • 159
2
votes
0 answers

Sylius 1.5: Change order status after successful payment

I want to use paypal payment method in my sylius shop. I configured it as described in sylius documentation https://docs.sylius.com/en/1.5/cookbook/payments/paypal.html. After payment I am redirected back to the site with alert 'Payment is being…
2
votes
0 answers

Paypal REST payment gateway on Sylius

I'm trying to implement Paypal REST payment method on sylius and I got the following error: Request GetStatus{model: ArrayObject} is not supported. Make sure the gateway supports the requests and there is an action which supports this request (The…
Samaël Villette
  • 318
  • 3
  • 25
2
votes
2 answers

Payum Paypal Rest config_path

I am trying to implement paypal-rest payment with the payum bundle in symfony (3.1.4). I need to get PayPal Plus running in my Symfony App. Therefore I read this…
user3440145
  • 793
  • 10
  • 34
2
votes
1 answer

Register custom gateway with PayumBundle

I am trying to register a custom Gateway Factory with the PayumBundle. If I register my Gateway Factory directly with the PayumBuilder it works fine. But if i add it via the PayumBundle all the extensions are missing. # app/config/config.yml payum: …
David
  • 409
  • 3
  • 14
2
votes
2 answers

Symfony2/Sylius don't detect stripe/stripe-php library

I'm using Symfony 2.8 with Sylius 0.16.0-dev and despite of installing stripe-php library via composer composer require stripe/stripe-php this part of code throw an exception if (!class_exists('Stripe')) { throw new \LogicException('You…
Starspire
  • 272
  • 3
  • 15
2
votes
1 answer

Payum error after composer update

Im using Payum bundle for symfony2 like 4 months. Is working fine but yesterder after a composer update the symfony2 console throws me an error. [Payum\Core\Exception\RuntimeException] Cannot find gateway factory class. Have you installed…
Borja Pombo
  • 525
  • 1
  • 7
  • 30
2
votes
1 answer

How to create NotifyAction for unsafe request?

I'm building custom gateway for Payum library, and I have to use the unsafe notify request to complete the…
Khaled Attia
  • 111
  • 3
  • 8
2
votes
0 answers

Sylius: configure of MultiSafepay

I trying to configure MultiSafepay in Sylius 0.14. When using omnipay_direct or omnipay_offsite in the config.yml I get this error (The payment details have been filled in: Name, Card number etc): The transactionId parameter is required Is the…
nilsM
  • 107
  • 8
2
votes
1 answer

Stripe payment gateway create recurring payment using PayumBundle

I am using PayumBundle to integrate Stripe payment gateway to my symfony2 application. i can create a successful direct payment, however i cannot create a recurring one. as the documentation of the bundle very poor. My question is how to implement…
Dahab
  • 518
  • 1
  • 5
  • 23
2
votes
2 answers

Stripe checkout with custom form symfony

I have a checkout form that I am using to send shopping cart details to different payment gateways like paypal using Symfony and Payum. Now I am trying to send payment details to stripe in case user selects stripe checkout option. At the moment the…
Shairyar
  • 3,268
  • 7
  • 46
  • 86
2
votes
1 answer

Integrating payment gateway 2checkout using (omnipay payum and symfony)

I am trying to setup payumbundle with 2checkout and I cant seem to understand how to setup config.yml and then how to send information to 2checkout. Before this I have setup PayPal express checkout successfully with Payum and I am some what familiar…
Shairyar
  • 3,268
  • 7
  • 46
  • 86
2
votes
0 answers

Request GetHumanStatus{model: ArrayObject} is not supported on Payum Laravel Package payment_done controller

I'm working with Payum Laravel Package 0.11.1, and facing the error Request GetHumanStatus{model: ArrayObject} is not supported on payment done controller: $status = new GetHumanStatus($token); $payment->execute($status); i.e.: I'm redirected from…
André Teixeira
  • 2,392
  • 4
  • 28
  • 41
1
2
3
10 11