Moneybookers plugin must be modified

Discussion in 'Payments processing' started by primifortuna, Dec 5, 2008.

  1. primifortuna

    primifortuna New Member

    Joined:
    Jul 28, 2008
    Messages:
    6
    Hi,

    I would like contribute with a change must be done in Moneybookers plugin.

    Actually don't work right, because it show MD5 signature error in Error log of amember panel, and the payments are done but amember mark as not paid.

    To work rigth the following change must be done in the file ipn.php of moneybookers folder:

    Original:

    function validate_md5($vars){
    global $this_config;
    $val =
    $vars['merchant_id'] .
    $vars['transaction_id'] .
    this_config['password'] .
    $vars['mb_amount'] .
    $vars['mb_currency'] .
    $vars['status'];
    if (($m=strtoupper(md5($val))) != $vars['md5sig'])
    moneybookers_error(sprintf(_PLUG_PAY_MONEYBOOK_ERROR, $vars[md5sig], $m, $val));
    }

    Modified:

    function validate_md5($vars){
    global $this_config;
    $val =
    $vars['merchant_id'] .
    $vars['transaction_id'] .
    strtoupper(md5($this_config['password'])) .
    $vars['mb_amount'] .
    $vars['mb_currency'] .
    $vars['status'];
    if (($m=strtoupper(md5($val))) != $vars['md5sig'])
    moneybookers_error(sprintf(_PLUG_PAY_MONEYBOOK_ERROR, $vars[md5sig], $m, $val));
    }


    Now work right.

    By the way, I'm looking for someone to modify moneybookers plugin, because moneybookers accept recurring payments but in amember the moneybookers plugin is not wrote to work with recurring billing.

    It's easy add vars to do moneybookers do recurring payments, but I don't get the product cycle renewed in amember.

    Thanks.
  2. primifortuna

    primifortuna New Member

    Joined:
    Jul 28, 2008
    Messages:
    6
    I'm looking for someone to modify moneybookers plugin to accept recurring payments.

    Some helper ?

    Thanks.
  3. bocko

    bocko New Member

    Joined:
    Nov 8, 2008
    Messages:
    2
    This will be very helpfull if somebody can make this?
  4. exeshop

    exeshop New Member

    Joined:
    Jan 10, 2009
    Messages:
    22
    Amember Support promised that job will be done at the end of january.
  5. hawkch

    hawkch New Member

    Joined:
    Jan 24, 2010
    Messages:
    4
    Now it's almost end of January 2010. Has the moneybookers plug-in been modified to support recurring billing or not?

    Just to understand, it's important to know the reasons why it hasn't.

    If for lack of time, etc, someone could do it on his personal code. But maybe there are some issues beyond this, and it would be important to understand by Support Team why, if so easy, it's not been done yet.

    Thanks for reply,

    HawkCH
  6. hawkch

    hawkch New Member

    Joined:
    Jan 24, 2010
    Messages:
    4
    ..........
  7. alexander

    alexander Administrator Staff Member

    Joined:
    Jan 8, 2003
    Messages:
    6,279
    Yes it support recurring billing.
  8. sabrina_sabrina

    sabrina_sabrina New Member

    Joined:
    Sep 14, 2012
    Messages:
    2
    There is no Moneybookers in my current version 4.0x. Please admin can you advise... I need moneybookers..
  9. alexander

    alexander Administrator Staff Member

    Joined:
    Jan 8, 2003
    Messages:
    6,279
    Plugin is available by request in helpdesk.

Share This Page