I imported a database from an online Prestashop website and I can´t edit some tables.
This is how it looks like the ps_category_lang
And this is how it looks like the same table on a fresh install
There are a lot of tables with this issue and I don´t know how to repair it.
Any ideas?
2
Set $cfg['RowActionLinksWithoutUnique'] to true in your config.inc.php settings file for phpMyAdmin.
$cfg['RowActionLinksWithoutUnique']
true
config.inc.php
This option controls the display of actions in rows for tables without a unique key.
https://docs.phpmyadmin.net/en/latest/config.html#cfg_RowActionLinksWithoutUnique
You are missing the unique / primary key on the id_category.
id_category
Regards
Click here to cancel reply.
2
Answers
Set
$cfg['RowActionLinksWithoutUnique']
totrue
in yourconfig.inc.php
settings file for phpMyAdmin.This option controls the display of actions in rows for tables without a unique key.
https://docs.phpmyadmin.net/en/latest/config.html#cfg_RowActionLinksWithoutUnique
You are missing the unique / primary key on the
id_category
.Regards