Jump to content


Corporate Sponsors


Latest News: (loading..)

* * * - - 1 votes

Paymate Support Thread


48 replies to this topic

#41 venkatesanb

  • Community Member
  • 2 posts
  • Real Name:venkatesan

Posted 07 May 2009, 14:18

hi
how to integrate our site with first data
i need step by step integration document.
i need API for first data
how to create buyer and seller account
thanks
venkatesan

Edited by venkatesanb, 07 May 2009, 14:23.


#42 silkvixen

  • Community Member
  • 107 posts
  • Real Name:Tracy S
  • Gender:Female
  • Location:Melbourne AUS

Posted 03 June 2009, 12:32

Hi all,

i have installed paymatespi 1.2 and im having a few issues.....

at the checkout im getting a redirect error http://localhost:8080/npaymate/expressPaymentAU.jsf so its not connecting to paymate at all
also in the admin side in the setting up of the module where it have merchant id and the blank box....what am i meant to be putting in there??

thanks

#43 silkvixen

  • Community Member
  • 107 posts
  • Real Name:Tracy S
  • Gender:Female
  • Location:Melbourne AUS

Posted 04 June 2009, 10:21

its ok i figured it out :)

#44 winedog

  • Community Member
  • 29 posts
  • Real Name:Sean Spratt

Posted 18 June 2009, 02:44

It looks like there is a possibility to send order details through to to paymate so that the customer's paymate receipt shows the products ordered.

Anyone know what those parameters are or how to implement it into this contribution?

#45 Paymate

  • Community Member
  • 6 posts
  • Real Name:Peter Chen

Posted 19 August 2009, 02:06

Announcing the beta release of Payment Sentinel Gateway solution.

Offering enhanced risk assessment service on top of the general payment gateway solution.

Now integrated into osCommerce as a payment module.

For more information check: http://addons.oscommerce.com/info/6946

General info: http://www.paymate.com/sentinel

Tech info: http://www.paymate.com/cms/index.php?optio...tent&id=199

Download: http://www.paymate.com/cms/images/paymate-...php-sdk-2.0.zip

#46 JZM

  • Community Member
  • 46 posts
  • Real Name:Jess

Posted 02 July 2010, 10:02

Hello,

I have got Ultimate SEO URLs v2.2d installed on a website and the issue that is happening is that when someone goes to pay via paymate and they confirm the order instead of being sent back to checkout_confirmation.php they get sent back to login.php. I have also had a feeling that this is happening with Paypal to. Does anyone have any ideas how we could resolve this loop issue asap.

Thanks

Jess

#47 Scottyj

  • Community Member
  • 7 posts
  • Real Name:Scott Johnson

Posted 07 November 2011, 03:51

Hi all, I realise there is not much activity on this thread but thought I would have a go.

I've just installed the Paymate SPI module and everything seemed to go fairly well except for the follow couple of issues.

1. I have 2 orders created in the system when someone pays with Paymate. The first order has a status of Prepayment, the second is Pending. It looks like the system creates the first order and once its paid, recreates the order as a second copy (this one has the transaction ID and status filled in). Does anyone else have this happen? What I would have thought would have happened is an order is created (Prepayment), customer pays (or not, maybe they forgot to click Confirm), and the order either changes status or remains. I suspect after calling paymate_checkout_preprocess.php its calling checkout_process.php (Hence creating the 2nd order) and then finishing.

2. The order email that is sent to the customer and myself had an order number of 0, despite the system having (2) orders with the correct order number (in this case 2609/2610, see above). Could this order number error be related to above?

I'm fairly comfortable with php and going to start investigating now, but just wondering if anyone has had a similar issue and if they have fixed it or not.

Thanks
Scott

#48 Scottyj

  • Community Member
  • 7 posts
  • Real Name:Scott Johnson

Posted 07 November 2011, 04:03

Sometimes is smarter to investigate before writing :)

I had the remove_idle_order.php function in the wrong directory, I uploaded it to ext/paymate not ext/paymate/functions (despite creating functions). I think that will be the problem as it would have removed the first order. Hopefully that fixes the second problem as well.

Cheers :)

#49 fnzb

  • Community Member
  • 1 posts
  • Real Name:Hayden Trail

Posted 14 January 2012, 00:58

In case anyone is still looking at this forum and trying to figure out how to get this contribution to work here is a little info I have found while trying to incorporate it into my oscommerce 2.3.1 shop.

Thanks to daoutlawz for his post, it helped me a lot:

Quote

Once you are ready to go live, comment out that code and add this code underneath it:

$this->form_action_url = 'https://www.paymate.com/PayMate/ExpressPayment?mid=testuser';

where testuser is your username from Paymate.


After run a test payment through I put in the correct info for my paymate account and received the same message as dhindry

Quote

Payment currency: *
Merchant is requesting a foreign currency payment and their account is not set up to do so

So I viewed the page source for the paymate payment page and found a bunch of hidden fields that it seems you can change by passing them values via the url. For example one is currency, so by changing the url to this :


$this->form_action_url = 'https://www.paymate.com/PayMate/ExpressPayment?mid=testuser&currency=NZD';

I was able to change the currency to NZ dollars and remove the error message above.

I remember seeing another post where someone wanted to give the buyer the ability to change the payment value, you can do this by passing the parameter amt_editable with the value 'YES'


$this->form_action_url = 'https://www.paymate.com/PayMate/ExpressPayment?mid=testuser&amt_editable=YES';

There are other parameters that are listed there so have a look. I hope this helps those of you setting up this contribution.