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
0
votes
0 answers

Symfony2 and Payum Bundle: How do I connect payment with order placed by a customer?

I have 2 entities in my database: Client and Product. Every time someone places order I store in DB new entity with Client data and some corresponding entities with Products (one-to-many), I don't have any other entity for keeping order as a whole.…
JayKey
  • 177
  • 1
  • 16
0
votes
1 answer

payum symfony 2 bundle - basic configuration - storage

I need to configure the payum bundle in order to let clients process paypal payments. I just followed the getting started official recomendations, but need to configure something more, I guess (maybe I am missing to configure the storage for…
Dario Rusignuolo
  • 2,090
  • 6
  • 38
  • 68
0
votes
0 answers

How to configure Blue Card payment?

Testing a Sylius standard edition, I want to add Blue Card payment to payments methods, how ?
Lhassan Baazzi
  • 1,128
  • 1
  • 11
  • 21
0
votes
0 answers

Payum Laravel 4 package doesn't work when debug mode is false

It's very strange because everything work fine when debug is true, but when I change debug value to false, it doesn't work paypal. Laravel log have: The TOKEN must be set. Have you executed SetExpressCheckoutAction? [2014-08-19 19:06:58]…
0
votes
0 answers

How do I use custom actions in Payum?

I have 2 versions of the same payment type I am writing plugins for and I need help understanding the difference in the architecture and how to handle the differences with custom actions. Method 1 is an offsite payment that returns to the 'done'…
jonupton
  • 95
  • 1
  • 5
0
votes
1 answer

Paypal useraction=commit is not giving me the buy button

I am using the payum bundle in symfony2, both latest versions, and the Paypal sandbox. Everything seems to be working fine, except I can't get the Continue button to switch to Pay Now in Paypal. I've set the useraction=commit part of the url in…
Dave
  • 123
  • 1
  • 7
0
votes
1 answer

Unable to load class payum in Laravel 4

I have installed payum for laravel 4 but it don't get registred in my app In my controller $storage = $this->getPayum()->getStorage('Payum\Core\Model\ArrayObject'); I get the error ReflectionException: Class payum does not exist I have gone…
Christian
  • 111
  • 1
  • 6
0
votes
1 answer

Error with doctrine:schema:validate for Payum Token

I am setting up Payum as per the docs here: http://payum.org/doc/0.10/PayumBundle/get_it_started I am using this entity here for my security token: namespace Acme\PaymentBundle\Entity; use Doctrine\ORM\Mapping as ORM; use…
nux
  • 153
  • 1
  • 8
0
votes
1 answer

Creation of billing agreement can not be confirmed by customer Payum/paypal-express-checkout-nvp

I am trying to create a recurring profile using express-checkout (Payum/paypal-express-checkout-nvp). Howto from Payum private function createAgreement(Purchase $purchase) { $storage =…
Fivetide
  • 161
  • 5
0
votes
2 answers

Payum - PaymentDetails object in done action where is

im on done aciton and dont know how to get paymentDetails object... here is manual : http://payum.forma-dev.com/documentation/0.8/PayumBundle/purchase_done_action i try get object PaymentDetails from step before…
Developer
  • 2,731
  • 2
  • 41
  • 71
0
votes
1 answer

Payum - How to repeat Paypal payment when user close browser being on paypal side.

I have an ExpressCheckout up and running. Now I want to give the user the chance to make the payment at a later time. For example he closes the paypal process I keep data saved. I guess this must be pretty straightforward but somehow it wont…
Marc Juchli
  • 2,240
  • 24
  • 20
0
votes
1 answer

Payum - Where is the best place to modify payment details?

I started using the PayumBundle which works great out of the box. No I extended my PaypalExpressPaymentDetails entity with my User object: /** * @ORM\OneToOne(targetEntity="Bidder", inversedBy="paymentPaypal") * @ORM\JoinColumn(name="bidder_id",…
Marc Juchli
  • 2,240
  • 24
  • 20
0
votes
1 answer

Mappings to table ? payumbundle symfony2

I am having a lot of difficulties with the payumbundle, however i think it's just because i don't understand on how to import mappings They payum bundle in symfony2 comes with the mappings: mappings: payum: is_bundle: false type:…
Maxim
  • 3,836
  • 6
  • 42
  • 64
0
votes
1 answer

Payum Duplicate entry '0' for key 'PRIMARY'

i am using the payumBundle for my payment set ups but i keep getting this error: Duplicate entry '0' for key 'PRIMARY' These are my classes that i am using /** * @ORM\Table(name="payum_tokenized_details") * @ORM\Entity */ class TokenizedDetails…
Maxim
  • 3,836
  • 6
  • 42
  • 64
0
votes
1 answer

Payum Bundle Configuration

I am struggling to define entity mapper found here: https://github.com/Payum/PayumBundle/blob/master/Resources/doc/capture_funds_with_paypal_express_checkout.md#2-a-configure-doctrine-storage payum: contexts: your_context_name: …
rat4m3n
  • 1,201
  • 2
  • 16
  • 23
1 2 3
10
11