Closed (works as designed)
Project:
Node export
Version:
6.x-2.21
Component:
Node export
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
9 Oct 2010 at 12:33 UTC
Updated:
6 Mar 2016 at 21:48 UTC
Jump to comment: Most recent
Comments
Comment #1
Enzomaticus commentedOne thought - did you create the uc product type via classes or through content type? I noticed that when importing we had the same problem. I then re-created the UC product type using product classes (the same way we did it on the export site) and it imported fine.
Hope this helps!
Comment #2
danielb commentedI don't know the answer to this one. All I know is if modules that attach data to nodes do it properly using hooks on node_load, node_save, etc... then the data should all be in the node. If there are external dependencies (data in other tables) that aren't put into the node, then things might not work.
Comment #3
danielb commentedI'm not sure there is anything that can be done about this. If you find out that Node Export is doing something incorrectly, feel free to reopen.
Comment #5
Dimm commentedNode export 6.x-2.24 - ength, width, height did not imported properly
Comment #6
Dimm commentedPatch:
file node_export.module,
function node_export_save(&$node) {
.....
after:
$op = 'update';
}
insert:
$node->dim_length = $node->length;
$node->dim_width = $node->width;
$node->dim_height = $node->height;
Comment #7
Dimm commentedComment #8
danielb commentedAny explanation as to why the variables have to be renamed for the save to work correctly? Isn't that a little strange??
Comment #9
danielb commentedIt looks like ubercart_product already puts these values into both places when a node gets saved?
http://drupal.org/node/685698
http://drupal.org/files/issues/685698_update_dims.patch
I don't understand why they've done it like that. I think this is a design issue with ubercart. We really shouldn't have to handle special case properties for other contrib modules like this.
Comment #10
Dimm commentedhttp://drupal.org/node/599806#comment-2132922
Comment #11
Dimm commentedhttp://drupal.org/node/685698#comment-4024112
Comment #12
drupalinthailand commentedHello,
Do you know how I could import my ubercart products in drupal 8 ?
Thanks for your help.