The Products and services link is broken (*/item_search]
Dblog.Message is:

Drupal\Core\Database\DatabaseExceptionWrapper: SQLSTATE[42S02]: Base table or view not found: 1146 Table '[database].ek_item_settings' doesn't exist: SELECT id,settings FROM {ek_item_settings} WHERE id=:id; Array ( [:id] => 0 ) in Drupal\ek_products\ItemSettings->__construct() (line 21 of [server-path]/modules/sandbox/ek/ek_products/src/ItemSettings.php).

Comments

ChoY created an issue. See original summary.

choy’s picture

Status: Needs review » Needs work

I added to the database the missing table via sql:

CREATE TABLE `ek_item_settings` (
	`id` INT(10) UNSIGNED NOT NULL COMMENT 'Primary Key: Unique ID.',
	`settings` LONGBLOB NULL COMMENT 'A serialized array containing the settings.',
	PRIMARY KEY (`id`)
)
COMMENT='Stores items settings.'
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB;

still needs to be added to the bext .dev version.

adominique’s picture

Assigned: choy » adominique
Status: Needs work » Fixed

Fixed with last commit.
Need also to insert 1 data raw with id = 0 in the table.
The table can also be installed by running /update.php with update_8003. This update was created for this new table.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.