I’m using drupal 6, with node import 6.x-1.0-rc4. I just backed up my database and install a new fresh drupal site. Now, I try to import a .csv file with node import. But I get the following error. What could be the reason?
user warning: Unknown column 'offset' in 'field list' query:
INSERT INTO node_import_tasks (name, uid, created, changed, fid, has_headers, file_options, ....
Your dump’s original database has an ‘offset’ field which isn’t present in the database you’re trying to load the dump into.
You can add it via
where XXX is the type (I’m guessing it’d be an integer).
But be aware that most likely your imports won’t work properly, as they’re for a different version of Drupal, and you can very well break Drupal by importing “bad” data.