Jump to content

Solved (No Payment Module Installed)


eptx

Recommended Posts

I am running 1.4.6.2 with 1.5 template. I have installed Authorize.net module and filled in a test account number and key. I have tried both test and production modes. When I go to my website and try to make a purchase it says there is no payment module installed?

Link to comment
Share on other sites

PS Changed the payment gate setup in 1.4.5.1.

 

In order to properly configure you payment gateway

 

open your file config/config.inc.php

Look for this:

/* Define order state */
// DEPRECATED : these defines are going to be deleted on 1.6 version of Prestashop
// USE : Configuration::get() method in order to getting the id of order state
define('_PS_OS_CHEQUE_',	  Configuration::get('PS_OS_CHEQUE'));
define('_PS_OS_PAYMENT_',	 Configuration::get('PS_OS_PAYMENT'));
define('_PS_OS_PREPARATION_', Configuration::get('PS_OS_PREPARATION'));
define('_PS_OS_SHIPPING_',	Configuration::get('PS_OS_SHIPPING'));
define('_PS_OS_DELIVERED_',   Configuration::get('PS_OS_DELIVERED'));
define('_PS_OS_CANCELED_',	Configuration::get('PS_OS_CANCELED'));
define('_PS_OS_REFUND_',	  Configuration::get('PS_OS_REFUND'));
define('_PS_OS_ERROR_',	   Configuration::get('PS_OS_ERROR'));
define('_PS_OS_OUTOFSTOCK_',  Configuration::get('PS_OS_OUTOFSTOCK'));
define('_PS_OS_BANKWIRE_',	Configuration::get('PS_OS_BANKWIRE'));
define('_PS_OS_PAYPAL_',	  Configuration::get('PS_OS_PAYPAL'));
define('_PS_OS_WS_PAYMENT_', Configuration::get('PS_OS_WS_PAYMENT'));

 

Add your payment gateway, for example PagosOnline:

define('_PS_OS_PAGOSONLINE_', Configuration::get('PS_OS_PAGOSONLINE'));

 

re-FTP up your config/config.inc.php

 

I don't have the define names for authnet...

 

and if I remember correctly (but I am not positive), I had to add the define to my db prefix_configuration, with value of 1. Try the ftp, and see where you get...make sure to turn cache off in your back office while testing.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...