Quote Originally Posted by kashyyyk View Post
I'm using v1.3.9h and just upgraded to google feed 1.10.1

In the configuration, when I update all my info I'm having a problem with Shipping Country, when I click on it, the Title Value Action headers fill the whole page, the area where I would edit is gone. All the other entries are fine.

I just checked my debug and I'm getting
[14-Jul-2011 02:16:54] PHP Fatal error: Call to undefined function google_cfg_pull_down_country_list() in /configuration.php(179) : eval()'d code on line 1

Dan
You can fix this by editing your admin/includes/functions/extrafunctions/googlefroogle.php

Add this:
Code:
if (!function_exists('google_cfg_pull_down_country_list')){
	function google_cfg_pull_down_country_list($countries_id, $key = '') {
		global $db;
		$name = (($key) ? 'configuration[' . $key . ']' : 'configuration_value');
		$countries = $db->execute("select countries_id, countries_iso_code_3 from " . TABLE_COUNTRIES);
		$countries_array = array();
		while (!$countries->EOF) {
			$countries_array[] = array('id' => $countries->fields['countries_id'],
				'text' => $countries->fields['countries_iso_code_3']);
			$countries->MoveNext();
		}
		return zen_draw_pull_down_menu($name, $countries_array, $countries_id);
	}
}
Which this mode was capable of auto mapping ISO-8859-1 to UTF-8! And also listing all product that were simply skipped. Would make finding issues with the cleaner easier.