Special chars import from csv solved!

Fero Gachulinec

New Member
If you have problems with csv import regarding special chars as ščžýá (used in Slovakia, Czech republic, ...) pls go to /apps/customer/controllers/ and open List_importController.php. Go to line 360 and change it from
'tagValue' => trim($value), to 'tagValue' => trim(iconv('windows-1250', 'UTF-8', $value)),.Please use for example 1251 code for Russian chars. I think, it is needed to do also for sql import below in the php script (line 944).
 
Last edited:
Back
Top