Error installing Magento on Windows 10 [closed]

0

Forever in the 50%. Anyone give a light ??

Module 'Magento_Directory': Installing data... [ERROR] PDOException: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'AD' for key 'PRIMARY' in...

    
asked by anonymous 28.09.2018 / 00:40

1 answer

1

The answer is in the error message itself:

  Integrity constraint violation: 1062 Duplicate entry 'AD' for key 'PRIMARY' in ...

You have a table that has a unique key field, and the installer attempts to insert a record with an existing value into the table.

Review your installer, or remove the entry that has the repeated value, and then try to install again.

    
28.09.2018 / 19:15