I'm using a feed to mirror content on a few subsites for a client. The Feed Mapper has been working great until the site was migrated to a new server. Now, the HTML character entities for angle brackets and quotes are removed. It is not an Input Format problem, since the character encodings from the feed are stripped prior to insertion in the database.
For example, HTML in the feed like:
<li><a href="url">text</a</li>
which, previously, would render as
<li><a href="url">text</a></li>
is now rendered as:
lia href=urltext/a/li
The new server is using PHP Version 5.2.8 and Apache 2.0. But the upgraded versions can't be the problem because I've been unable to replicate this problem locally running PHP Version 5.2.5 and Apache 2.0 with the exact same Drupal code base and configuration. Is there a php.ini setting that would cause this behavior? Are there any other possible sources for this problem?
Comments
Comment #1
amanire commentedFixed the problem. I had to install the cURL library for PHP.