Interswitch payment gateway integration [closed] - php

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I want to integrate Interwitch payment gateway in Joomla or wordpress.
Has anyone do this before.
I search and found one extension below for joomla vm but it's payed and i don't know it is the same what I exactly want.
http://extensions.joomla.org/extensions/extension-specific/virtuemart-extensions/virtuemart-payment-systems/15132
Is any ither option or i have to go on core ?

Interswitch or gtpay integration is not only creating working module like we do on paypal. but we must make customization on the e-commerce script to meet document integration from Interswitch. For example, we must provide transaction reference 6 to 16 digits, providing contact page, etc. so we cannot use standard flow like paypal payment gateway. if you buy ready module on in http://softdb.eu/gtpay-gtbank-magento-payment-gateway-p-34.html, you still need programmer to customize it to meet interswitch integration document (Merchant Acceptance Test Document that referred to as DIY or UAT document). Interswitch is suck and they don't run on standard way and they force us to customize any e-commerce system to work with their scenario; something that don't need on most payment gateway.
I hope it's helping you. you can also read more explanation here http://satoewarna.com/page/index/gtpay-interswitch-gateway-for-oscommerce-magento-or-other-estore-system.html

You can read this tutorial here:
http://tuts.stackarena.com/2012/05/integrating-your-website-with-interswitch-webpay-concluding-part-part-2/
If you require the service, you could go here:
http://e-magin.net/interswitchgtpay-integration/

Related

Laravel PayPal Multivendor System [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I am trying to develop a multivendor payment system in Laravel where each user is able to add their PayPal client_id and client_secret. So that each user is able to receive their payment in their own account.
If I understand correctly, so far Paypal adaptive allows for such kinds of system. However, it adaptive payment doesn't support any more new accounts/implementation.
So any suggestion that how can I achieve that? Any resource to tutorial for that?
If you have and account's client ID and secret, use that information to set up and process any checkouts with payments toward that particular account. There is no complexity for a checkout that pays a particular account you have credentials for.
If you need to pay multiple accounts simultaneously (which your question does not specify), which is something adaptive payments could do, there is no solution for this.

Facebook-like comment refresh system? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I've recently built a simple messaging system for some work colleagues and I am currently working on optimizing current functionality. Many users are complaining of a messy-looking message display system.
The thing that I currently have in place is a PHP file inside of an iFrame that refreshes every 15 seconds. However this is undesirable and wastes resources.
As a result I was wondering if there are any tutorials out there that propose better methods, similar to those used by Facebook whereby the comment is automatically loaded upon posting.
http://ajaxim.com/ <-- Ajax Instant Messaging framework. :)
EDIT :
You might also want to try this http://www.smashingmagazine.com/2012/05/09/building-real-time-commenting-system/ which is a good that guides you through making a realtime comment system.
That system is built using HTML 5. (PHP and Ajax too of course) And it's using Websockets :)
Oh, and a link to a previously asked question that is similar:
Instant notification using php/mysql,please give me a general idea

Looking for an open-source PHP e-commerce system that supports a number of features [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I would like it to have the following features:
Supports multiple languages
Allows admin to define a discount
period on a number of products
Allows members to register, login,
add products to shopping cart and buy
them (probably all e-commerce system
support this)
Members can pay by paypal
Having a contact us page (with a
working contact form)
Products can be searched by users
On each product detail page, there is
an "Email to your friend" function.
What are the PHP open-source e-commerce systems that you know of, supports all/most of the features mentioned above?
Many many thanks to you all.
Check out OpenCart, features list here: http://www.opencart.com/index.php?route=feature/feature
It appears to support most of what you requested, and there will be extensions for that of which it doesn't support by default.
To be completely honest with you, the open-source eCommerce solutions are virtually non-existent, or where they are, not very good. opencart is the best I've used so far, and quite surprisingly it's very nice.
Magento http://www.magentocommerce.com/

Looking for paypal payments tutorial [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am looking for a tutorial which will show me how to accept paypal payments as I am not having much luck with the documentation.
In the tutorial, I just need to understand how to capture a unique identifier when the payment has been initiated, and then use the unique identifier to update the database record when payment confirms the payment via ipn.
Does such a tutorial exist?
Basically, I already have the payments working i.e. a user can make a payment and payment can send a notification to the ipn script, but I can't tell which payment paypal has accepted.
There guide is pretty well written and covers all of this:
https://cms.paypal.com/cms_content/en_US/files/developer/PP_OrderMgmt_IntegrationGuide.pdf
PayPal has multiple ways to accept payment. Here is the site to PayPal developer site where you will find all the options: https://www.x.com/community/ppx/dev-tools
Here is a good tutorial on how to integrate your shopping cart with PayPal Website Payments Standard.
The PayPalIPN class provided by the toolkit I developed handles the entire IPN confirmation under the hood. You only need to get the data and update the order in the database. Optionally, you can also notify the customer with your own customized invoice or other information.

Paypal integration with PHP [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Hai,
I need a system that automatically transfer funds from one paypal account to another paypal account when i click on a button. Is there any paypal API with PHP to perform this task.
thanks
This is not actually that easy to Google because the Paypal API documentation is a mess. There are several different ways to do almost everything, and it seems like Paypal's expectation is that you memorize the brand names they have for services with the core functionality of those services.
A pain.
But there is already a good answer for this question here on stackoverflow.com
How to send money to any paypal account

Categories