Products support for this is located here. http://www.boonex.com/forums/topic/Deanos-Facebook-Connect-Support.htm
Anyhow. As i cannot reproduce that problem, i suspect you have another mod installed that is using the same geoip class i use in my module.
My module does not require the function that is causing the error, so edit the file shown in the error /home/cocoteco/public_html/modules/deano/deanos_facebook_connect/inc/geoip/geoip.inc and look for this.
function geoip_country_code_by_name($gi, $name) {
$country_id = geoip_country_id_by_name($gi,$name);
if ($country_id !== false) {
return $gi->GEOIP_COUNTRY_CODES[$country_id];
}
return false;
}
Comment it out like so.
/*
function geoip_country_code_by_name($gi, $name) {
$country_id = geoip_country_id_by_name($gi,$name);
if ($country_id !== false) {
return $gi->GEOIP_COUNTRY_CODES[$country_id];
}
return false;
}
*/
Or remove that section.
If you continue to have problems, then contact me directly with access info. I may need to find the cause of the conflict so i can create a solution.