Dimaer Posted November 19, 2012 Share Posted November 19, 2012 Hi, I was browsing few topics around here. Error: Transaction could not be initiated due to connection problems. If the problem persists, please contact our support. Same issue was brought to attention here: http://www.prestasho...-their-website/ Basically we are looking to use Paysafecard on our webiste but module available in Prestashop addons is outdated. http://addons.presta...aysafecard.html There was an issue with general functionality. Paysafecard team has mentioned the following issue: > With the module prestashop you need to make some changes in the code, because this module is not up to date with our new features.> > If you want to go live with prestashop you need to set up the parameter “MerchantClientID”. > > You will find all necessary information in our documentation: http://www.paysafeca...ata/api-client/ > > Set the “MerchantClientID” in order to identify a customer for promotional activities in order to prevent from multiple PIN abuse of promotion cards. This parameter should be set in the CreateDisposition request and should value the customerID the customer has at your web shop. Our programmer fixed that by editing files PrepaidServices.php and PrepaidServicesAPI.php. But error mentioned in topic above is still there and Paysafecard has no clue why it is not working now. Anyone has it working on their website? Link to comment Share on other sites More sharing options...
hishak Posted November 23, 2012 Share Posted November 23, 2012 No, we are encountering the same error message. Called Paysafecard and they mentioned 'nokURL' in the CreateDisposition call is not set. Opened ticket with Prestashop. btw does the 'Business Type' setting matter in the module setup? Link to comment Share on other sites More sharing options...
Aksanur Posted January 19, 2013 Share Posted January 19, 2013 The Payment Gateway is module is suitable for all countries.will be better where they will guarantee a 3 month free bug fix for purchased extension for certain platform for further improvement. credit card payments online Link to comment Share on other sites More sharing options...
Libertas Posted February 26, 2013 Share Posted February 26, 2013 Any fix available? Have the same problem Link to comment Share on other sites More sharing options...
coolu Posted August 29, 2013 Share Posted August 29, 2013 (edited) same issue here it has been 1 month now purchase the module and prestashop team isnt helping me out anyone can help me ? Edited August 29, 2013 by coolu (see edit history) Link to comment Share on other sites More sharing options...
Narancs Posted November 23, 2013 Share Posted November 23, 2013 (edited) I am experiencing the same issue. And also the PrestaShop Add-ons Marketplace Support is not answering regarding this issue. Finally I took matters in my own hands. The fault on our side is line 190 in PrepaidServices.php, this weird construct of code always returns an empty string and so prevents the module from doing its work. The alternative result is an invalid URL, also referring to PrestaShop's order.php file in root, which is deprecated. So, the module apparently is outdated, too. I found a solution that works for me (which does not imply it works for everybody else, too). Replace this (should be around line 190): $nok_url = Tools::getShopDomainSsl(true, true).(_PS_VERSION_ < '1.5').__PS_BASE_URI__.'/order.php?step=3' ? '' : 'index.php?controller=order&step=3'; With this: $link = new Link(); $nok_url = $link->getPageLink( 'order', null, Context::getContext()->language->id ).'?step=3'; This might solve the problem until the Add-On developers update the module, even though it is an ugly fix, I guess. But it works. Update: As the module uses deprecated Paysafecard APIs, Paysafe does not allow usage anymore, even though it is from PrestaShop. The module is of no use until updated to conform with Paysafecard requirements. Edited December 2, 2013 by Narancs (see edit history) Link to comment Share on other sites More sharing options...
NemoPS Posted December 17, 2014 Share Posted December 17, 2014 If anyone is still interested in such a module, I published it some time ago: http://store.nemops.com/payment-and-gateways/39-prestashop-paysafecard.html Link to comment Share on other sites More sharing options...
Recommended Posts