With print_r I get:
stdClass Object
(
[field_car_image] => Array
(
[0] => Array
(
[filename] => HERMAN 096.jpg
[filepath] => sites/default/files/HERMAN 096.jpg
[filemime] => image/jpeg
[filesize] => 933105
[status] => 1
)
)
..... // the rest is also on here
It saves ALL the other data perfectly, just not the image. After:
node_object_prepare($node);
$node = node_submit($node);
node_save($node);
I do a print_r on the $node object, and there is no reference to "field_car_image". Anybody know how to properly save file fields?