I have been testing this module to import some content form one site to another. All in all it works well.

One big issue that I have is the path and taxonomy term is not coming across. The term I can set with VBO so no biggie there but the path was hand coded and I need it to come over.

',
'log' => '',
'revision_timestamp' => '1281369769',
'format' => '3',
'name' => 'admin',
'picture' => '',
'data' => 'a:1:{s:5:\"block\";a:1:{s:4:\"user\";a:1:{i:0;i:1;}}}',
'path' => 'about/news-events/press-releases/08-09-10_3.htm',
'field_image' => array(
'0' => NULL,
),

It is in the export array. I have tried this on a vanilla drupal site as well. Fresh Install -> add module -> export then import.

The settings page also has the path option checked upon import. Any ideas of how to debug or figure it out?

Comments

hedinfoto’s picture

Also the same result with the non dev version of the module. Is this feature broken in Drupal 6?

hedinfoto’s picture

By Changing line 819 in the module file of the dev version

from:

$node->path = NULL;

to:

$node->path = $original_node->path;

It now works! Is that going to break something else?

danielb’s picture

Status: Active » Closed (cannot reproduce)

If you bother to read the code surrounding that line you changed you will see that this is a configurable option.