Men's Confidence Posted April 29, 2012 Share Posted April 29, 2012 Authorize.net isn't showing in my checkout. Does anybody else have this problem? Link to comment Share on other sites More sharing options...
Dh42 Posted April 30, 2012 Share Posted April 30, 2012 Are you using ssl and are your customers based in the US? Link to comment Share on other sites More sharing options...
Men's Confidence Posted April 30, 2012 Author Share Posted April 30, 2012 I think that's the issue. I haven't set up an SSL yet. Will it not even show up in the checkout if it's not? Link to comment Share on other sites More sharing options...
Dh42 Posted April 30, 2012 Share Posted April 30, 2012 It will not, with the standard module. I think, but I am not positive, presto-changeo's module might work without ssl. Link to comment Share on other sites More sharing options...
Men's Confidence Posted April 30, 2012 Author Share Posted April 30, 2012 I know Authorize.net requires it. I'll just do it that way. Thanks! Link to comment Share on other sites More sharing options...
Mike Kranzler Posted April 30, 2012 Share Posted April 30, 2012 Hi Men's Confidence, As DesignHaus said above (and as you may have seen as a warning within the module), Authorize.net will NOT work without an active SSL certificate on your site. Once you purchase one and set it up however, you should have no issues using this payment processor. Please let us know if that works for you. -Mike Link to comment Share on other sites More sharing options...
tomerg3 Posted April 30, 2012 Share Posted April 30, 2012 The SSL Statement is not entirely accurate, it is just a limitation of the Authorize.net module that comes with Prestashop. They have a fairly new method called DPN (which is available with our module), which does not require you to have SSL or any PCI requirements. You can read about it more at https://developer.authorize.net/api/compare/ Link to comment Share on other sites More sharing options...
nathanielleee Posted December 4, 2012 Share Posted December 4, 2012 I have SSL and an american store and i still cant see 1.4.3 show up. Running 1.5.2. Going to try reverting to an older version Link to comment Share on other sites More sharing options...
pietro Posted July 1, 2013 Share Posted July 1, 2013 Hi, my authorize AIM module was working great. recently I noticed an unusual amount of paypal transactions and realized that CC payment does not show as an option during checkout. Reading this http://forge.prestashop.com/browse/PNM-1375, I recall that I disabled payment by check. unfortunatelly his solution does not work for me. I uninstall/install the authorize module but it did not work. I disabled all payment options for the country and all of them come back when I re-enable them except for auhorizeAIM. I reinstalled the pay by check module and the check option shows but the authorize module is not there. I have a valid SSL certificate My currency and country are enabled for the module I am running PS 1.4.6.2. Authorize AIM module 1.3 by PS Your prompt assistance will be appreciated since most of my transactions are paid with CC and it is currently unavailable. Thanks in advance, Pietro. Link to comment Share on other sites More sharing options...
pietro Posted July 2, 2013 Share Posted July 2, 2013 Somehow my https got disabled, therefore the AIM module was not working. I noticed after reading this threat. http://forge.prestashop.com/browse/PSCFI-2954 It is all good again. Thanks, Pietro Link to comment Share on other sites More sharing options...
jenishfaldu Posted January 30, 2014 Share Posted January 30, 2014 to use authorize.net module in newer version ,you need ssl certificate. here is code to replace for work authorize.net module with out ssl certificate(just remove if codition for SSL in code) /modules/authorizeaim/authorizeaim.php current code:- if (Configuration::get('PS_SSL_ENABLED') || (!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) != 'off')) { $isFailed = Tools::getValue('aimerror'); $cards = array(); $cards['visa'] = Configuration::get('AUTHORIZE_AIM_CARD_VISA') == 'on'; $cards['mastercard'] = Configuration::get('AUTHORIZE_AIM_CARD_MASTERCARD') == 'on'; $cards['discover'] = Configuration::get('AUTHORIZE_AIM_CARD_DISCOVER') == 'on'; $cards['ax'] = Configuration::get('AUTHORIZE_AIM_CARD_AX') == 'on'; if (method_exists('Tools', 'getShopDomainSsl')) else $this->context->smarty->assign('x_invoice_num', (int)$params['cart']->id); $this->context->smarty->assign('cards', $cards); $this->context->smarty->assign('isFailed', $isFailed); $this->context->smarty->assign('new_base_dir', $url); return $this->display(__FILE__, 'authorizeaim.tpl'); } replace code:- /* if (Configuration::get('PS_SSL_ENABLED') || (!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) != 'off')) {*/ $isFailed = Tools::getValue('aimerror'); $cards = array(); $cards['visa'] = Configuration::get('AUTHORIZE_AIM_CARD_VISA') == 'on'; $cards['mastercard'] = Configuration::get('AUTHORIZE_AIM_CARD_MASTERCARD') == 'on'; $cards['discover'] = Configuration::get('AUTHORIZE_AIM_CARD_DISCOVER') == 'on'; $cards['ax'] = Configuration::get('AUTHORIZE_AIM_CARD_AX') == 'on'; if (method_exists('Tools', 'getShopDomainSsl')) else $this->context->smarty->assign('x_invoice_num', (int)$params['cart']->id); $this->context->smarty->assign('cards', $cards); $this->context->smarty->assign('isFailed', $isFailed); $this->context->smarty->assign('new_base_dir', $url); return $this->display(__FILE__, 'authorizeaim.tpl');/* }*/ Link to comment Share on other sites More sharing options...
Recommended Posts