I think I am having the same problem in Drupal 6 as was described and fixed here (http://drupal.org/node/953538) for Drupal 7. Is anyone else having this problem or is it not even the same problem. It appears that the BOM is not being stipped from the file before being imported and due to this I can not import from the first colum, if I strip the BOM manually the first colum imports fine. I am using a CSV file.
Comments
Comment #1
alex_b commentedOnly one way to find out: backport and test #953538: Remove BOM from UTF-8 files
Comment #2
hampshire commentedI tried doing that before posting but unfortunatly it is beyond me.
Comment #3
joetsuihk commentedI do not think we should put the BOM corrector/checker inside a fetcher, but should be in parser. Fetcher should remain what it fetch as it is, and parser should handle variants on field names, file structures etc.
So in D6:
add to line 199:
these should work with CSV files.
for sitemap, OPML, simplepie, syndication, they use FeedsImportBatch->getRaw(), so:
FeedsBatch.inc line 178 (untested)
if someone find this interesting, patch can follows.
Comment #4
twistor commented