After restoring a database dump from my Drupal 6 website on a testserver, all menu links link to the original Drupal website instead of the local testserver. I have tried clearing all caches without result. How can I make the menu links point to my local test server?
Truncate (empty) the
cache_menu
table. In phpMyAdmin, select your database in the sidebar, then the table, then scroll down and click 'Empty the table (TRUNCATE)'.The SQL statement would be
TRUNCATE cache_menu;
.I assume that you have a backup of the db since you've done a migration. If not, back up the db first.