How To Rebuild The Menu In Drupal 6
1 Jan 0001
One-minute read
To rebuild the menu in Drupal 6 you have to go to admin/build/modules.
In drupal 5 the menu is cached in the cache_menu
table, so it is easy to invoke a menu-rebuild by emptying the table with a simple mysql command like TRUNCATE cache_menu;
. (I have a handy script that empties all tables starting with cache_
).
read more