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...
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...
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.