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
1
vote
1 answer

Issue with Rabo Omnikassa IDEAL transaction on clicking back button

I have an isssue with rabobank omni kassa. The below code redirects to the omnikassa page and if the user clicks the back button without making payment and returns to the same page to make payment results in "Transaction already processed  : code=94…
Programmer
  • 157
  • 1
  • 14
1
vote
3 answers

laravel 5 composer update omnipay fails

I am having a problem with composer when I run composer update. The relevant bits of my composer.json file looks like this: "require": { "php": ">=5.5.9", "laravel/framework": "5.1.*", "omnipay/common": "~2.0", …
Jon Wahl
  • 11
  • 1
1
vote
1 answer

How i can find which request method is used for paypal integration

i m new to paypal integration can any one please help me with how i can find which request method is used for paypal itegration. when i click on pay button following calles made : logtimeout(GET) auth?(GET) setbuyer(POST) p1(POST) p2(POST) So, i…
1
vote
1 answer

Laravel 5.3 - Omnipay Paypal Express not returning success message

I'm new to Laravel. I've been struggling to implement Paypal Express Checkout in my website for a couple days in order to enable donations to a non-profit organization. Thanks to these explanations I've been able to install Omnipay, let the user…
Mefimefi
  • 123
  • 2
  • 9
1
vote
3 answers

Missing Classes from Silverstripe Omnipay

On a fresh scotch box https://box.scotch.io/ (which I generally recommend) and with this composer: { "name": "silverstripe/installer", "description": "The SilverStripe Framework Installer", "require": { "php": ">=5.3.3", …
Matt Sagen
  • 13
  • 2
1
vote
1 answer

omnipay payment wall integration -Error

I tried to implement paymentwall payment gateway integration with Laravel using omnipay library.After setting setApiType, setPublicKey and setPrivateKey and trying to call the API, its getting the response "Public key is missed or invalid" from…
Shaju Nr
  • 338
  • 3
  • 18
1
vote
1 answer

Omnipay - Mollie test transactions not showing on dashboard

I'm trying to implement Mollie API via omnipay php library. However i have few questions which i cant understand by myself. When i chose the payment status to be returned as Cancelled and click on Further to your webshop Mollie redirects me to the…
mstojanov
  • 175
  • 4
  • 17
1
vote
1 answer

Omnipay Exception not being caught

Using Craft CMS implementing Omnipay. Relatively new to Craft and Onmipay but hoping my general concept knowledge is not off here: This seemed pretty straightforward, an exception should be caught with a try/catch block no? // Validate on Omnipay…
Atom145
  • 113
  • 5
1
vote
1 answer

PayPal does not show order summary-Omnipay

I have a function for Paypal redirection for that I pass some values in params.. It only pass the Description field doesn't shows the amount to be paid,and rest of my order summaries.. Here is my function public function postPayment() { …
Suganya Rajasekar
  • 685
  • 3
  • 14
  • 37
1
vote
1 answer

paypal success url error laravel

I'm using laravel Omni plugin for transactions. Once payment has been done , I'm getting error for success url. public function checkOut(Request $request) { $params = array( 'cancelUrl' =>…
user5534204
1
vote
1 answer

Omnipay-Stripe storing creditcard details from form to database

I'm using Omnipay-stripe in laravel 5.2 and is working fine. I want to store credit card details of customers to pre-populate stripe popup with creditcard details while making another payment.
Karan
  • 31
  • 5
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

Omnipay Paypal Express redirect displays redirecting message

I have Omnipay functioning perfectly in my payment gateway but when the system redirects to PayPal i get the following on screen before redirecting to PayPal: Redirecting to …
JamieP
  • 25
  • 7
1
vote
1 answer

How to pass curl options through OmniPay to Guzzle?

In the middle of integrating OmniPay currently. Seems all good, but when I go to use the PayPalExpress gateway, it gives me the following error: [curl] 35: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure [url]…
Lonnie
  • 98
  • 7
1
vote
2 answers

How to refund with Omnipay

After I complete payment with paypal express and my database update fail, what I can do in that case? Here is code: $transaction = $this->initPayPalExpress()->completePurchase($this->param); $response = $transaction->send(); $data =…
Vladimir Djukic
  • 2,042
  • 7
  • 29
  • 60