Active
Project:
Table Wizard
Version:
6.x-1.3
Component:
tw_import_delimited
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
21 Jun 2010 at 07:23 UTC
Updated:
11 Jul 2011 at 23:22 UTC
After importing a tab separated csv file (utf8), special characters in the beginning of each item is lost.
For example:
firstname lastname
ØRJAN GØMM
is imported to the database as
firstname: RJAN
lastname: GØMM
Comments
Comment #1
mikeryanThis works fine for me - I pasted your text directly into a file, added the tabs between the values, and imported - the full first name ØRJAN shows in the raw table, and in the view of the table.
What platform (Unix/Mac/Windows) are you importing on? What platform did the file originate from? You might have a line-ending issue here - try adding
to your .htaccess file.
Comment #2
vunger commentedI am having a similar problem, but with French special characters such as « and é, and in my case the special character and everything that appears afterwards in the cell is dropped.
For example:
First nations of Quebec entrepreneurial forum «achieving success by sharing»
becomes:
First nations of Quebec entrepreneurial forum
I tried modifying .htaccess as suggested and it didn't work. I am using xampp on Windows 7.
Comment #3
bleeuwen commentedModule Importer will solve this problem.
Comment #4
td001 commentedI have a similar issue here. As matter as a fact, I import the same data to my local Drupal using Table Wizard, the special characters in the beginning of each item is there. But when I import the same data to another Drupal system (running in Linux), the special charactors in the beginning of each item is lost.
Does anybody have ideas why this happened? Thanks in advance!
Comment #5
td001 commentedI made it working after I saved the items in csv file with below format:
"column1","column2"
"@$%","@&*12-20"
Hope this helps.