Jump to content

Edit History

auntum.com

auntum.com

On 12/5/2020 at 8:33 PM, auntum.com said:

Hi, i also have a similar problem. I get some errors when updating the database and the back-office menu on the left side disappears. I update from 1.7.6.9 to 1.7.7.0. I use php7.3.

fallos-prestashop_1770.png

https://github.com/PrestaShop/PrestaShop/issues/22250

https://github.com/PrestaShop/PrestaShop/issues/16379

PululuK commented 29 days ago

Hi @photinia73 @straitskapitan

Do not rename the column active.

1 - Be sure you have the active column in PREFIX_tab
2 - Make sure you are missing the enabled column in PREFIX_tab
3 - If steps (1) and (2) have been verified, then you can execute this request (Replace PREFIX_ by ps_ in your case):

ALTER TABLE `PREFIX_tab` ADD `enabled` TINYINT(1) NOT NULL DEFAULT '1' AFTER `active`;

 

also add column route_name as in the photo

 

 

Captura de pantalla de 2021-01-03 19-35-42.png

auntum.com

auntum.com

On 12/5/2020 at 8:33 PM, auntum.com said:

Hi, i also have a similar problem. I get some errors when updating the database and the back-office menu on the left side disappears. I update from 1.7.6.9 to 1.7.7.0. I use php7.3.

fallos-prestashop_1770.png

https://github.com/PrestaShop/PrestaShop/issues/22250

https://github.com/PrestaShop/PrestaShop/issues/16379

PululuK commented 29 days ago

Hi @photinia73 @straitskapitan

Do not rename the column active.

1 - Be sure you have the active column in PREFIX_tab
2 - Make sure you are missing the enabled column in PREFIX_tab
3 - If steps (1) and (2) have been verified, then you can execute this request (Replace PREFIX_ by ps_ in your case):

ALTER TABLE `PREFIX_tab` ADD `enabled` TINYINT(1) NOT NULL DEFAULT '1' AFTER `active`;

 

×
×
  • Create New...