Thanx for the replyMuch appreciated.
Thanx for the replyMuch appreciated.
What is the latest version?
In the download section, it says version "1.0" (code modified by ramana on 10 apr 2008)
http://www.zen-cart.com/index.php?ma...eyword=paymate
However, here in the thread, the latest seems to be version "1.3a" (mentioned above)
Would love to get the latest version and give it a try. If anyone could send it, please PM me
Many thanks![]()
I had the same problem and this is how i solved it.
In the includes > modules > payment > paymate.php file make sure you edit the "$this->form_action_url =" line 45. I replace the original...
https://www.paymate.com/PayMate/ExpressPayment
link with...
https://www.paymate.com/PayMate/ExpressPayment?mid=username&return=http://www.site.com.au/index.php?main_page=checkout_process
Make sure you insert your paymate username where it says username and your site address where is says www.site.com.au
All this info is in the Txt file in the zipped folder
The Paymate Module is downloadable from here
Working on the IE8 problem now so keep checking
scottwww![]()
Hey All
I have been ajdusting the code with no sucess as yet. Also have been emailing the techs at Paymate about the problem and we have not found a solution as yet
I have also tested on IE9 32bit this morning and we are getting the same problem. so if we can find it it should would for both versions
Richard
Will keep you posted
Patrick Bourne in Akld (NZ) may of found the fix for the problem. We are still testing but this is what he has found.
There’s a line in the paymate.php file that was calling the hidden field in the button (the field that was being put in badly and stuffing it up) so I removed it.
The line (134) was:
zen_draw_hidden_field('return', zen_href_link(FILENAME_CHECKOUT_PROCESS), '', 'SSL')
When this has been removed it appears to be working correctly, but more testing is needed.
Thanks to Patrick
Richard
I tried to remove this and i got an error when i got to the payment options....
Close. The problem is the parentheses on lines 133 and 134 are messed up so that the function call for the 'back' field encloses the function call for the 'return' field.
The fix is to move the closing ) from line 134 to line 133 to change this:
zen_draw_hidden_field('back', zen_href_link( FILENAME_CHECKOUT_CONFIRMATION).
zen_draw_hidden_field('return', zen_href_link(FILENAME_CHECKOUT_PROCESS), '', 'SSL'));
to this:
zen_draw_hidden_field('back', zen_href_link( FILENAME_CHECKOUT_CONFIRMATION)).
zen_draw_hidden_field('return', zen_href_link(FILENAME_CHECKOUT_PROCESS), '', 'SSL');