Jump to content
  • 0

Jak zmienić db_prefix w module eBay?


blessu

Question

Następujący problem:

Przy próbie zapisania ustawień wysyłki w module eBay wyrzuca mi błąd:

Unknown column 'ps_carrier' in 'field list'

INSERT INTO `nt_ebay_shipping` (
            `id_ebay_profile`,
            `ebay_carrier`,
            `ps_carrier`,
            `extra_fee`,
            `international`,
            `id_zone`
            )
            VALUES(
            '1',
            'DE_SpecialDispatch',
            '35',
            '0',
            '0',
            '1')

Podejrzewam, że problemem jest fakt, że w moim sklepie tabele w bazie danych mają prefix nt_, a jak widzimy w powyższym błędzie moduł próbuje działać na ps_carriers. W jaki sposób mogę... nakierować moduł na właściwy prefix? A może nie prefix jest problemem?

 

P.S 1.6.1.2

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

A skąd Ci się takie pole "urodziło" skoro w instalatorze modułu jest:

// SHIPPING CARRIER
$sql[] = 'CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'ebay_shipping` (
          `id_ebay_shipping` int(11) NOT NULL AUTO_INCREMENT,
          `id_ebay_profile` int(16) NOT NULL,
          `ebay_carrier` varchar(256) NOT NULL,
          `ps_carrier` int(11) NOT NULL,
          `extra_fee` float(8,2) NOT NULL,
          `international` int(4) NOT NULL,
          `id_zone`int(11) NOT NULL,
          PRIMARY KEY (`id_ebay_shipping`)
    ) ENGINE='._MYSQL_ENGINE_.'  DEFAULT CHARSET=utf8';
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...