Problem when import larger categories into menu items?

Question:

I have problem when import larger categories into menu items. After import larger categories and save the menu profile, all menu items on design section are missing, the design section of menu profile show empty.

Answer:

The problem because the megamenu structure column in database table “ves_megamenu_menu” are using type: text, it dont allow store larger content, so json data of menu structure break, and can not generate menu items on design section.

To resolve the issue, please connect to phpmyadmin or mysql server terminal, select the site database and run there queires:

ALTER TABLE `ves_megamenu_menu` MODIFY `structure` mediumtext;
ALTER TABLE `ves_megamenu_menu` MODIFY `html` mediumtext;
ALTER TABLE `ves_megamenu_menu_log` MODIFY `menu_data` mediumtext;
ALTER TABLE `ves_megamenu_menu_log` MODIFY `menu_structure` mediumtext;
ALTER TABLE `ves_megamenu_menu_log` MODIFY `note` mediumtext;

Last updated