I've been reading this post about Amazon Pay and thought to give it a go, but after the install when I try to open the module I get an error. I was wondering that if the module worked (post is from 2017), the problem may be with my specific installation or it may be a problem related with the new version of the module / TB?
201: *
202: * Starting with v1.1.0, thirty bees no longer equips the updater module
203: * with database upgrade scripts, but equipped Core Updater with the
204: * capability to read each class' table description and to update the
205: * database accordingly.
206: *
207: * Retrocompatibility: as the above is just a plan and not yet true for
208: * the time being, this was added as a kludge to bridge the time until it
209: * actually gets true.
210: *
211: * @since 1.1.0
212: */
213: public static function installationCheck()
214: {
215: $db = Db::getInstance(_PS_USE_SQL_SLAVE_);
216: $result = $db->executeS(
217: (new DbQuery())
218: ->select('`active`')
219: ->from(static::$definition['table'])
220: ->limit(1)
221: );
222:223: if ( ! $result) {
224: $db->execute('ALTER TABLE '
225: ._DB_PREFIX_.static::$definition['table']
226: .' ADD COLUMN `active` TINYINT(1) UNSIGNED NOT NULL DEFAULT 1;'
227: );
228: }
229: }
230:}
Question
SeaSky
Hey,
I've been reading this post about Amazon Pay and thought to give it a go, but after the install when I try to open the module I get an error. I was wondering that if the module worked (post is from 2017), the problem may be with my specific installation or it may be a problem related with the new version of the module / TB?
Module Version 2.3.0 for P.S 1.6 (https://addons.prestashop.com/en/payment-card-wallet/21293-amzpayments.html)
TB Version 1.1.0
Any help or advice would be apreciated!
Error:
7 answers to this question
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now