I attempted to import images from a custom CMS to Drupal using direct MySQL insert queries to the Drupal database. The images are copied to a path within the drupal site:
sites/default/files/images/import
The nodes show up in lists but the direct links (someurl/node/1234) cause 404 errors. They are all of type media_image and have a valid uid assigned. I also did associated inserts to files and content_type_media_image
Is there an internal Drupal process that needs to happen to finalize this import? Is it at all possible without rewriting as a proper Drupal import module?
Sample node insert:
INSERT INTO node SET
type='media_image',
language='en',
title='apicture.jpg',
uid='4',
status=1,
created=1328644135,
changed=1328644135;
// grab nid as last mysql_insert()
INSERT INTO files SET
uid = 4,
filename = 'apicture.jpg',
filepath = 'sites/default/files/images/import',
filemime = 'image/jpeg',
filesize = 40069,
status = 1,
timestamp = 1328644136;
INSERT INTO content_type_media_image SET
vid = 683,
nid = 683,
field_image_fid = 539,
field_image_list = 1,
field_image_data = 'a:3:{s:11:"description";s:0:"";s:3:"alt";s:0:"";s:5:"title";s:0:"";}';
Note: the queries above are the generated queries.