payum

Implement Payum/Laravel recurring payment

折月煮酒 提交于 2020-12-26 05:20:56
问题 I have some issues trying to get this working, I've implemented the checkout express (or seems to be) successfully, but also my system needs subscription option, following this example. Now, my problem is that in Laravel you cannot simply put some random files, so I'm trying to do it in the correct way, sadly, there is no documentation of the classes and methods including on the library. I've created some functions within controllers (I don't know if this the right way) the problem I'm facing

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

社会主义新天地 提交于 2020-01-04 04:30:14
问题 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 entity. PAYUM BUNDLE with AUTHORIZE.NET GATEWAY. Please can anyone help me out. Thanks all in advance. 回答1: The payum templates is not kept in the bundle but in the payum lib itself. Standard templates inheritance does not work here. There is no simple way

Payum - PaymentDetails object in done action where is

旧街凉风 提交于 2019-12-25 12:38:09
问题 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 http://payum.forma-dev.com/documentation/0.8/PayumBundle/simple_purchase_examples/paypal_express_checkout UPDATE1 public function doneAction(){ $request = $this->getRequest(); /** * @var $token PayumSecurityToken */ $token = $this->get('payum.security.http_request_verifier')->verify(

Payum - symfony2 bundle not redirecting me to paypal on paypal express checkout

故事扮演 提交于 2019-12-24 05:58:57
问题 I have been trying all day to setup the payum bundle but it seems as if there are parts missing in the install tutorial of this bundle. I have the form but when i click the button "Pay" it is not redirecting me to paypal I am using the code as described here : http://sandbox.payum.forma-dev.com/paypal/express-checkout/repare_simple_purchase_and_doctrine Any help appreciated. 回答1: In most cases it is wrong paypal credentials, double check you use right. Also you could check for errors in the

Stripe payment gateway create recurring payment using PayumBundle

谁说胖子不能爱 提交于 2019-12-24 05:12:17
问题 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 recurring payment for a customer using PayumBundle or any similar one. 回答1: I manage to do a small combination between PayumBundle & Stripe-php as following: /** * @Extra\Route( * "/prepare_checkout", * name="mycom_stripe_prepare_checkout" * ) * *

payum symfony 2 bundle - basic configuration - storage

半腔热情 提交于 2019-12-13 05:17:13
问题 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 PaymentDetails somewhere). my config files are as follows: **app/config.yml** doctrine: orm: auto_generate_proxy_classes: true entity_managers: default: mappings: WebsiteDeviceBundle: ~ WebsiteOnePageBundle: ~ payum: is_bundle: false type: xml dir:

Not able to send payment to PayPal using Symfony

不打扰是莪最后的温柔 提交于 2019-12-12 06:05:53
问题 I am using Symfony and trying to send payment details to PayPal using PayumBundle, I got PayumBundle configured and I got it to work until getting redirected to paypal but no payment details were being sent so I searched on line and came across this question in SO and this is the exact blank information screen I am seeing. Looking at the documentation that answer is pointing to I came up with the following piece of code but when I try to access to route that is calling the following prepare

Payum Bundle send empty payment - and paypal accept it :) :(

余生长醉 提交于 2019-12-11 12:19:22
问题 I configure Bundle from this example http://payum.forma-dev.com/documentation/0.8/PayumBundle/simple_purchase_examples/paypal_express_checkout When I go to /payment I am redirected to the PayPal site - but don't have any information about it. There is info - you able to see details - but this is not true - i accept payment (without know price and desctiption - and payment succes !? This Bundle is ready for use or working stage ? config: payum: security: token_storage: ed\partnerBundle\Entity

Overload symfony2 vendor class to set curl verify_peer option to false

前提是你 提交于 2019-12-11 11:18:12
问题 Using the Payum bundle with symfony2 , I have the common unable to verify ssl certificate error. I couldn't get rid of it by changing curl options in php.ini or by setting curl options in my php code. However, modifying the vendor/kriswallsmith/buzz/lib/Buzz/Client/AbstractClient.php class and setting the default $verifyPeer option to false finally allows me to use Payum and PayPal express checkout locally with wamp. EDIT: I can also override this class which uses the other one. I feel it's

Error: Credit card details has to be set explicitly or there has to be an action that supports ObtainCreditCard request

点点圈 提交于 2019-12-11 07:53:22
问题 I use Payum stable version 0.13 and Zend framework v2 for make payments via AuthorizeNet. My code for test: $storage = $this->getServiceLocator() ->get('payum') ->getStorage('LowbiddoPayment\Entity\AgreementDetails'); $details = $storage->create(); $details['currency'] = 'USD'; $details['amount'] = 100; $details['card_num'] = new SensitiveValue('4111111111111111'); $details['exp_date'] = new SensitiveValue('10/16'); $details['description'] = 'Test'; $storage->update($details); $this-