Had the same problems... I had to play with the sanitizer until it worked. If possible, run it so only 20 or 200 products are entered and look at the xml to see if all looks right. Again.. there is nothing wrong with the coding... just me..
Look to includes\classes\google_base.php and look for the function google_base_xml_sanitizer. The following line is where the strange A's are coming from.
Code:
$str = eregi_replace("[^[:alnum:][:space:].,’Â!()'-_/+=?ÀÂÄßÈÉÊËÎÏÔÖÙÛÜàâäèéêëîïôöùûüÿÇç«»]", "", $str);
I worked through mine until my feed look good and ended up with this line..
Code:
$str = eregi_replace("[^[:alnum:][:space:].,!()'-_/!\+=?«»]", "", $str);
Running just a short amount of products through is just to speed things up. One day I'll spend some time in fixing my descriptions so I wont have to modify things.
@conspicuouschick
Check your write access to where the feed is created. Sounds like something is keeping it from working...
Bookmarks