Jump to content
thirty bees forum

Checkout error with different payment gateway


Havouza

Recommended Posts

I wanted to activate a payment gateway we used before but have had deactivated for a while waiting for a better deal. Now we have it but this is what happens when I try to place and order

Screenshot 1 & 2 is the same but different parts with errorhandling activated.
Screen 3 is how it looks without errorhandling. Text say no payment gateways installed

It should also be opc but.....

Any hints please?

TIA
Anders

screen1.png

screen2.png

screen3.png

Link to comment
Share on other sites

The reason is clear - database table ps_module_carrier is missing. You need to recreate it, and then associate your payment modules with carriers.

CREATE TABLE `ps_module_carrier` (
  `id_module` int(11) unsigned NOT NULL,
  `id_shop` int(11) unsigned NOT NULL DEFAULT '1',
  `id_reference` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

I wonder how you managed to delete this table in the first place.

Also -- if possible, update to 1.1.x. Core updater would detect this critical issue and fixed it automatically for you during update.

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...