Answer by oshell for Invalid characters in XML feed data
The problem is that your UTF-8 response is treated in a different way or the database is not set up correctly. Here some examples on where this could happen and how to fix it.Before Using...
View ArticleAnswer by Yzgeav Zohar for Invalid characters in XML feed data
Please add your database encoding type so we can answer better. In order to detect the encoding type of a string you will need to use the mb_detect_encoding as follow:echo...
View ArticleAnswer by ThW for Invalid characters in XML feed data
It seems that at some point the XML source or data, that is UTF-8, is treated as ISO-8859-1 and converted to UTF-8. Depending on how you generate the feed this could happen at several points.The most...
View ArticleInvalid characters in XML feed data
I have a feed that I pull data into a database from. It provides the data in XML format. However, the data includes "illegal" characters. For example:A GREAT NEIGHBOURHOOD – WITH Aor large “country...
View Article