-
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
data-migration-tool converts utf8 characters to ?
#96
Comments
Hi @kandrejevs |
Unfortunately, it did not help. value migrated from |
An internal issue was created MAGETWO-54492 |
Data-Migration-Tool does not receive data from the source in utf8. |
Thank you, @Polar77 |
The bug was fixed in the recent release. Please try it out. Feel free to reopen the issue if it is still relevant. |
when migrating data from magento 1 to magento 2, some utf characters are converted to
?
example:
can't view orders because when migrating data from
sales_flat_order_item
tosales_order_item table
,product_options
column contains serialized data. In my case product name contains characterč
, after migrations:34:"Nohavičky HP25 ružovočierna S/M"
becomess:34:"Nohavi?ky HP25 ružovo?ierna S/M"
sinceč
is 2 bytes long and?
is only 1 byte, string is no longer 34 bytes long and unserialize function returns false and throws notice, which cause fatal error, because product options can't be unserialized.The text was updated successfully, but these errors were encountered: