Hi Charlene,
Thanks for the details. We’ve checked the source site DB charset and collation and it looks different from the target site.
Can you please set these following constants in your target site wp-config.php
? Make sure your target site DB_CHARSET
and DB_COLLATE
values are as follows:
define( 'DB_CHARSET', 'latin1' );
define( 'DB_COLLATE', 'latin1_swedish_ci' );
This makes it the same with the one used in your source site. In our own tests, if we use the above DB_CHARSET
and DB_COLLATE
values in our source site and then we migrate it to a target site with different charset values (e.g. utf8
) – it will cause encoding issues and characters won’t display correctly.
However if we change the DB_CHARSET
and DB_COLLATE
values of the target site with the same values as the source site (for charset encoding compatibility) – the encoding will look correct.
This should fix the issue. If it works – please mark this ticket as resolved. If not – please let us know so we will check further. Thank you!
Cheers,
Emerson