Questions tagged [omnipay]

Omnipay is a framework agnostic, multi-gateway payment processing library for PHP 5.3+

Omnipay is a payment processing library for PHP, based on ideas from .

292 questions
0
votes
0 answers

Difference between PAYMENTINFO_0_ACK and ACK in Paypal Express Checkout

im using laravel 5 with omnipay/paypal to make some express chekouts. everything seems good except that in my paypal response i want to know why i have two ACK vars, because some tutorials on the web use it to verify if the payment is accepted or…
Samir B
  • 152
  • 1
  • 2
  • 13
0
votes
1 answer

how to implement PayPal Adaptive Payment in Omnipay PHP payment processing library

Am using cakephp 2.3 version and implemented PayPal Omnipay PHP payment processing library with PayPal Express Checkout which is working fine. But now i wanted change this to PayPal Adaptive Payments using Omnipay. If any one already used this…
0
votes
1 answer

AuthorizeNet Omnipay Error

I am using omnipay package for my payment method in authorized. I have two site on the same server, one is a live site that runs ssl and one that is for testing purposes only and do not run ssl. Now, i dont have problem on paying in our testing…
slverstone
  • 115
  • 11
0
votes
1 answer

the difference between cardReference and token in parameter of Omnipay

What is the difference between cardReference and token in parameter of Omnipay
hvtruong
  • 150
  • 10
0
votes
1 answer

Removing folder Guzzle & Symfony after installing Omnipay

I have installed Omnipay using composer in my local then upload it to my website and things work well. When I remove folder Guzzle & Symfony, there are errors. I want to reduce the number of files, so how could I remove these directories leaving…
aleadr
  • 3
  • 2
0
votes
1 answer

Omnipay / Paypal Receive Payment Without Account

I need to receive payments via PayPal on my website and have used Omnipay (PayPal_Express) to implement it. I also like my users to have the option to pay with their credit card without having to create an paypal account. In the sandbox this works…
0
votes
1 answer

What protocol does Omnipay sagepay use?

I've been told that Sagepay protocol 2.x is being deprecated and to upgrade to v3 Taken a look at the source code, but it's not obvious which one it uses, could anyone enlighten me on this?
marcus
  • 136
  • 6
0
votes
1 answer

How to configure CreditCard class in Omnipay?

I've been trying to configure Omnipay in CodeIgniter all day long, I think I'm finally cracking it up, but I'm stuck at the credit card validation part. For some reason when I run my I get the error message Fatal error: Class 'CreditCard' not found…
Ant100
  • 403
  • 1
  • 8
  • 26
0
votes
1 answer

Using Omnipay with Icepay

Is there already a way available to use Omnipay with Icepay? I didn't see it anywhere in the third party list of Omnipay, but someone else might have already made something for this. Thanks!
user3478148
  • 433
  • 1
  • 8
  • 26
0
votes
0 answers

Omnipay and laravel, session keeps expiring

I am using laravel 5 and omnipay 2 to handle payments in my website. I am creating the payment with the purchase method and stores all the parameters in sessions. The custommer is then sent to paypal express and when his credit card have been…
0
votes
0 answers

I am having difficulties configuring Securepay via Ominpay, Payum and Symfony

I currently have PayPal working fine via Payum in Symfony2 and am now trying to configure SecurePay (via Omnipay), however it does not even seem to be connecting to SecurePay and there is no documentation to support it, so I am very stuck. In the…
Dan G
  • 1
0
votes
2 answers

Catch Invalid CreditCard Exception with Symfony PayumBundle

I am trying to catch InvalidCreditCardException and any other exception using Omnipay Bridge of PayumBundle. I have tried: try { return $this->forward('PayumBundle:Capture:do', array( 'payum_token' => $captureToken, )); } catch…
Shairyar
  • 3,268
  • 7
  • 46
  • 86
0
votes
1 answer

Omnipay PHPUnit Guzzle httpClient 404 Error - mock json

I'm new to OmniPay, playing around with it and trying to make a simple custom gateway, and create a unit test with a mock json http response. In the GatewayTest.php I set a mock http response: public function testPurchaseSuccess() { …
orszaczky
  • 13,301
  • 8
  • 47
  • 54
0
votes
2 answers

How to retrieve information about a transaction just performed?

This is my code: $gateway = GatewayFactory::create('PayPal_Express'); $gateway->setUsername('name'); $gateway->setPassword('pass'); $gateway->setSignature('sig'); $gateway->setTestMode(true); $resp = $gateway->purchase( …
josh
  • 1
  • 2
0
votes
1 answer

Cannot redirect to paypal using omnipay with JQuery in the header

I am implementing Paypal Express using omnipay in Laravel 4. Status code: 302 found when my site try to redirect to paypal. Error: XMLHttpRequest cannot load https://www.sandbox.paypal.com/xxxxxxxx. No 'Access-Control-Allow-> Origin' header is…