skip to Main Content

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
enter image description here

And this is how it looks like the same table on a fresh install
enter image description here

There are a lot of tables with this issue and I don´t know how to repair it.

Any ideas?

2

Answers


  1. Set $cfg['RowActionLinksWithoutUnique'] to true in your config.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

    Login or Signup to reply.
  2. You are missing the unique / primary key on the id_category.

    enter image description here

    Regards

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search