Contributions

Payment Modules (Category Index)
Search: 

MoneyBookers IPN

The MoneyBookers payment processing module was altered and enhanced by a facility to have MoneyBookers gateway submit confirmation of payment back to an osCommerce-based online store.

The module is certified by MoneyBookers. Detailed installation manual can be found at:

http://www.moneybookers.com/haendler/HowtosetupMoneybookersinHolbi.pdf

Expand All / Collapse All

Error when order total is above 999.99 emporiolive.com 4 Jun 2009

The package had a bug where orders with total value greater than 999.99 (regardless the currency) could not be

processeed. Error shown: 'Invalid amount'. This was a small issue regarding the "," used as thousands seperator.

To solve it you need to change the code in

catalog/checkout_amoneybookersipn.php (if you use other modules besides checkout_amoneybookersipn.php you also need

to change them)


FIND

'&amount=' . number_format($order->info['total'] * $currencies->get_value($moneybookers_currency), $currencies-

>get_decimal_places($moneybookers_currency)) .
'&amount2=' . number_format($order->info['shipping_cost'] * $currencies->get_value($moneybookers_currency),

$currencies->get_decimal_places($moneybookers_currency), '.', '') .
'&amount2_description=' . urlencode($order->info['shipping_method']) .
'&amount3=' . number_format($order->info['tax'] * $currencies->get_value($moneybookers_currency), $currencies-

>get_decimal_places($moneybookers_currency)) .

and REPLACE by:

'&amount=' . number_format($order->info['total'] * $currencies->get_value($moneybookers_currency), $currencies-

>get_decimal_places($moneybookers_currency), '.', '') .
'&amount2=' . number_format($order->info['shipping_cost'] * $currencies->get_value($moneybookers_currency),

$currencies->get_decimal_places($moneybookers_currency), '.', '') .
'&amount2_description=' . urlencode($order->info['shipping_method']) .
'&amount3=' . number_format($order->info['tax'] * $currencies->get_value($moneybookers_currency), $currencies-

>get_decimal_places($moneybookers_currency), '.', '') .


MoneyBookers IPN bugfix and Split gateway nofx_sk8 22 Jan 2009
Minor SQL Error - FIXED!! latest 25 Oct 2008
Moneybookers IPN robertadcran 28 Mar 2008
MoneyBookers IPN datalink 12 Jun 2007

Note: Contributions are used at own risk.