-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
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) {
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
No activities found.