aarm Posted December 4, 2020 Share Posted December 4, 2020 Can some on help to see whats wrong and how to repair? An error occurred during installation... You can use the links on the left column to go back to the previous steps, or restart the installation process by clicking here. 1: SQL error on query Index column size too large. The maximum column size is 767 bytes. 1 Link to comment Share on other sites More sharing options...
geegee Posted January 4, 2021 Share Posted January 4, 2021 Hi you could edit the file install/data/db_structure.sql and replace every occurance of DEFAULT CHARSET=utf8mb4 COLLATION with DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci then klick the restart button and the install works.. but not sure if this has any long term impact on the shop 1 5 Link to comment Share on other sites More sharing options...
zod Posted February 14, 2021 Share Posted February 14, 2021 I tested the solution here (as fresh install Prestashop 1.7.7.1) and it worked. 2 Link to comment Share on other sites More sharing options...
hadrien01 Posted February 15, 2022 Share Posted February 15, 2022 I can confirm it still works with Prestashop 1.7.8.3 (on Wampserver with MariaDB) 1 Link to comment Share on other sites More sharing options...
astralabe Posted July 29, 2022 Share Posted July 29, 2022 Cela fonctionne , Merci. a été néssésaire pour installé la boutique en local sur wamp avec la version prestashop_1.7.8.7. Link to comment Share on other sites More sharing options...
Zohaib-fk Posted August 25, 2022 Share Posted August 25, 2022 Thanks for sharing. It works. File location \psroot\install\data\db_structure.sql Before doing change CREATE TABLE `PREFIX_accessory` ( `id_product_1` int(10) unsigned NOT NULL, `id_product_2` int(10) unsigned NOT NULL, KEY `accessory_product` (`id_product_1`, `id_product_2`) ) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8mb4 COLLATION; After doing change CREATE TABLE `PREFIX_accessory` ( `id_product_1` int(10) unsigned NOT NULL, `id_product_2` int(10) unsigned NOT NULL, KEY `accessory_product` (`id_product_1`, `id_product_2`) ) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ; Link to comment Share on other sites More sharing options...
Propustrading Posted October 13, 2022 Share Posted October 13, 2022 Dated: 13 October 2022 I faced the very same issue during a fresh installation using wamp but this solution didn't work for me. I was still getting the error so I searched over youtube and found another solution where I had to change text type to dynamic and it worked. Video for reference: 1 2 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now