Hello to all.
I need your help on a problem I have these days.
I have to upgrade a web site from 5.1 to 6.17. The problem is that the 5.1 installation was so heavily modified by the programmer who created the web site, that an automatic upgrade could not be done. So I decided to import the content of the website by hand.
I created a clean installation of D6, where I created the Content Types by hand. Imported the taxonomies, terms, nodes, node images and others by sql scripts. Those seem to work great.
I now have to recreate the menus, the blocks and the views. But I'm stuck at the menu transfer. See what I did.
I created the menu from the Drupal. Then I transfered 10 items from the old menu to the new using this script:
INSERT INTO drupal6_db.menu_links
SELECT
'menu-menu-en', mid, pid,
path, 'node/%', title, CONCAT('a:2:{s:10:"attributes";a:1:{s:5:"title";s:9:"', title, '";}s:5:"alter";b:1;}'), 'menu',
0, 0, 0, 0, 0, 1, 0, mid, 0, 0, 0, 0, 0, 0, 0, 0, 0
FROM
drupal5_db.menu
WHERE (language = 'en')
GROUP BY mid
LIMIT 10;
When I did the import, I went to the menu page (/admin/build/menu-customize/menu-menu-en) where I get a blank white page. Also the menu block appears empty.