uploading csv with Arabic character /CSV file extension UTF-8

Created on 20 June 2022, almost 3 years ago
Updated 18 April 2024, 12 months ago

Problem/Motivation

-when upload Arabic character you will face problem when write characters in csv file will shown like ?????
-when uploading the csv headers not matching so will give you an error that un index filed

the proposed solution

1-add echo "\xEF\xBB\xBF"; in CSVIntroductionForm.php line 228

if (file_exists($path)) {
unlink($path);
}
echo "\xEF\xBB\xBF";
--------------------------------------
2- add $header = str_replace( "","", $header); in CSVImportForm.php line 230
we use replace here cause CSV file has character came from csv utf-8 file looks like .
foreach ($headers as $index => $header) {
$header = iconv('UTF-8', 'Windows-1251//IGNORE', $header);
foreach ($fields['product'] as $key => $field) {

--------------------------------------

3- add $header = str_replace( "","", $header); in CSVUpdateForm.php line 214
we use replace here cause CSV file has character came from csv utf-8 file looks like .
foreach ($headers as $index => $header) {
$header = iconv('UTF-8', 'Windows-1251//IGNORE', $header);
foreach ($fields['product'] as $key => $field) {

🐛 Bug report
Status

Fixed

Component

Code

Created by

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

No activities found.

Production build 0.71.5 2024