-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix double byte characters broken bug. #28
Conversation
@elenleonova , is anybody looking at this pull request? |
Thank you @HirokazuNishi , we were able to migrate data with Polish characters thanks to your code. Great work! |
Thank you, @HirokazuNishi. We will merge your pull-request to Data Magento Tool code. |
@HirokazuNishi I see you have not signed License Agreement yet. Please do it by clicking on "Details" link |
Thank you @HirokazuNishi for for contriburion! The issue was fixed in a different way within this two commits ce958b4 e4abd7c |
Hi,
I found the reason of double byte characters broken bug.
It's caused by losing mysql connection parameters. By default, PHP's mysql connection uses 'latin1' as its character sets, but Magento uses 'UTF-8'. So double byte characters are always broken without "charset" or "initStatements" option when connecting databases.