Needs review
Project:
uc_roboxchange - RoboXchange payment gateway
Version:
6.x-1.2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
15 Aug 2010 at 11:50 UTC
Updated:
6 May 2011 at 08:39 UTC
Jump to comment: Most recent file
Comments
Comment #2
neochief commentedI'm not sure why it's closed. The issue is still actual. Here's a patch in unified diff format.
Comment #3
neochief commentedNew patch solves following issues:
1. All request parameters now match specification.
2. Everything works both with POST and GET (if you use ip2locale, switch to get to avoid troubles, as I did)
3. Solved problem with wrong balance counting, which didn't take into account the currency rate.
So far, so good.
Comment #4
to.stepan.kuzmin@gmail.com commentedThanks for patch! I will test it in production.
Is there any other issues for this module?
Comment #5
neochief commentedExcept a lot of code standard violations, I didn't find anything buggy.
Comment #6
kudesa commentedУ нас тут проблема возникла с робокассой в том, что после оплаты не производился переброс обратно на интернет-магазин. Используем 6ю версию. Допускаю, что у нас что-то не так настроено было. Но в итоге пришлось немного поправить модуль вот в этой функции: function uc_roboxchange_done_payment()
В самом низу функции изменили строчки:
return "OK". $order_id;
на
print "OK". $order_id;
exit;
и
return $res;
на
print $res;
exit;
После этого возвраты заработали.