This is:
```
Should open the file
throws exception:
ErrorException : iconv(): Wrong charset, conversion from MACCENTRALEUROPE' toUTF-8//IGNORE//TRANSLIT' is not allowed
$spreadsheet = IOFactory::load($source);
1.5.x and 1.6.0
Thanks
I'm having the same issue.
Mee too.
iconv(): Wrong charset, conversion from MACCENTRALEUROPE' toUTF-8//IGNORE//TRANSLIT' is not allowed
it seems the problem is in StringHelper, that detects proper iconv using dummy conversion src_encoding->dst_encoding (which works fine in the situation), but makes a real convert as src_encoding->dst_encoding//IGNORE//TRANSLIT
This is an issue with iconv.
You probably experience it because you use Alpine Linux (which uses musl).
In that case the solution is in last 2 lines of the Dockerfile from this comment.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If this is still an issue for you, please try to help by debugging it further and sharing your results.
Thank you for your contributions.
Most helpful comment
This is an issue with iconv.
You probably experience it because you use Alpine Linux (which uses musl).
In that case the solution is in last 2 lines of the Dockerfile from this comment.