views:

65

answers:

2

We are building an ecommerce app where we want our users to pick out a (any provider we can make compatible with our app) payment provider. Up to today, we only support paypal and we have implemented this rather manually.

We are looking for some sort of a module (free or commercial) to easily plugin in more payment providers to let customers accept payments through them. Our customers would use this to accept payments for sales in their web shops.

Any ideas on such "modules"? I know of the Zend_Payment module but that's not updated anymore or isn't out yet at all. We run PHP in the Zend Framework if that matters.

A: 

There is extensive developer documentation from many payment providers to assist in writing scripts to handle transaction requests. Usually these will involve sending some request to your payment gateway provider and providing a callback url where update information about the given transaction can be sent. It should not be difficult to develop an appropriate module for the occasion in Zend and a controllerAction to handle the callback functionality.

lintal
+1  A: 

Try this one

http://phpclasses.100pour100net.com/package/5213-PHP-Accept-payments-with-Paypal-Authorize-net-and-2CO.html

It process several major payment gateways.

VOX