Wordpress QNS Booking and PayU Payment gateway integration - php

I have a wordpress plugin called QNS booking system in which there is only 2 payment methods 1) Paypal 2) Direct Bank Transaction but I like to add another transaction namely PayU which is very popular in India. I am not much into php but my client needs it. So I have added some coding which you can help me through to get an idea and what are the ways which this requirement can be achieved.
Note: payu is available for woo commerce but not for booking systems
PayU Woocommerce Integration
QNS Booking Plugin
I just need only the PayU Payment Gateway others can be optional
Please review the codings and give me a solution guys
Thanks in Advance

To
integrate Payumoney in woocommerce "PayU" provides a simple plugin to
integrate. Install it, enter your credential and that’s all.. Done..
If you want to integrate it in wordpress non e-commerce site, it needs customization. Install PHP kit provided by payumoney.
The
most important you have to pass the values of all required parameter as
mentioned in their documentation. Pass these values with $_POST. That’s
it.
I have done the same thing in Hotel Booking system. Its working fine.If you need any further help, contact me on aryamaae.com

Related

how to call eway payment gateway form on different location

I have install woocommerce in my wordpress application and also install eway payment gateway plugin. it is showing perfect on my default checkout page.
But i want to call it on different location ( i have donation page in my application and want to use eway there as well) as I am new to wordpress got stuck very badly.
please give me suggestion whatever possible and ask me for code if you want any.
Basically, you can't use eway payment gateway without e-commerce plugin. Which means you need product :), and you can't consider a donation as a product at all. I am sure that you have installed the plugin for Woocommerce only. To integrate eway on donation page you need to use eway API. here is the reference for the same.
https://www.eway.com.au/developers/api

Stripe multi vendor payment gateway in Laravel

I'm building website that is able to sell and buy product inside the website.
Users can post product and buy product from others.
Only remain thing is to integrate with payment gateway.
I'm going to use stripe for payment gateway.
Is it possible to do that with stripe?
Which is the best way to implement this?
The website was built in Laravel 5.4.
Yes, you can use Stripe for that. Taking advantage of Laravel Cashier. They've already implemented some logic that you can reuse.
Second, you want to pay 'sellers', yes, Stripe does that. Please check Stripe COnnect, which is great for exactly what you are trying to do.
Link: https://stripe.com/connect
This link shows specifically how to charge the user and keep some fees: https://stripe.com/docs/recipes/store-builder
If you follow all the documentation from Cashier, you are good to go.
Link: https://laravel.com/docs/5.4/billing

Accepting paypal payments via WordPress plugin

I am currently developing a WordPress plugin that allows users to accept paid guest posts. The scenario goes like this: someone visits the website of the plugin user, creates a guest post which is saved as pending and finally makes a one-time payment via paypal. Once the payment has cleared the post is published on the website.
Basically I need a solution where the website owner can specify just his or her email or merchant ID in the plugin options panel to start accepting payments.
The problem is I'm a little lost as to which paypal api to use and how to get started. There is a lot of information on the paypal website and I'm feeling a bit overwhelmed. Could someone please point me in the right direction?
Thanks
I would recommend using the Express Checkout API for something like that. Specifically, you'll be using SetExpressCheckout, GetExpressCheckoutDetails, and DoExpressCheckoutPayment as explained in that first link.
My PHP class library for PayPal will make those API calls very simple for you, and you could even take a look at my PayPal for WooCommerce plugin to get an idea of how to use the library within a plugin if you need to.

Advance integration of ccavenue

I have integrated ccavenue payment gateway in my site, on which user redirect to ccavenue.com to fill the form (it can be autofilled) and select the payment option.
But I don't want to redirect users to ccavenue to fill that form and select payment option. Instead I want user can select payment option from my site and redirect directly to that banks interface on behalf on ccavenue.
for example site mobikwik has this type of integration.
The integration you are looking for is called 'Seamless Integration'. The documentation for the same can be requested by ccavenue by emailing their technical team and providing your merchant id.
It is called the CCavenue IFRAME integration. You need to contact the ccavenue guys for that. There is a readymade plugin available for IFRAME integration but only for magento. We need to use the php kit provided by the ccavenue and manually integrate it. Its a difficult task.
seamless and PCI/DSS this two term you have search
In ccavenue there is one another method called "iframe checkout form" which seamless you can go with that.
You can have seamless payment integration on your website only if you have PCI-DSS compliance according to the RBI guidelines and security

implement Payment Gateways to Ecommerce

I've built an Ecommerce site in Silverstripe and I'm new to this, sorry if I ask something silly. I'm just wondering how do I implement payment gateways to the Ecommerce site in Silverstripe? Do you have any good tutorials that I can follow?
Thank you very much. By the way I'm choosing DPS as the gateway.
Any recommendations for me to start this would be appreciated.
You may want to start by looking at the Payment module for SilverStripe.
http://www.silverstripe.org/payment-module/
https://github.com/silverstripe-labs/silverstripe-payment
In my opinion payment gateway these days provides so much facilities that all we need to do is to redirect user to the payment gateway with certain attributes like amount,curreency and some other attributes being required by the gateway.
once payment is authorized payment gateway redirect user back to your page.Now almost all payment gateway work in two ways
Synchronized call
ASynchronized call
in the second method you have to provide some entry point to the gateway where it will send you the all required information about payment.
Once you have everything all you need is to do final checkout process for the user.Beside the silverstripe payment module i will suggest you to go through DPS documentation as they might have shown some samples how you can communicate with them and what they expect from you in the request what its structure should be and what they will send back once user done with payment,response structure etc.
I tend to follow this approach once we decide the payment gateway go through there documentation set up a test account with them and than start playing around.

Categories